Reputation: 15
How can i send empty mail with phpmailer i.e. with only attachment files and empty body? I have send mail with empty $mail->Body="" but mail could not be sent it says 'Message body empty' although i have attached a file.
Upvotes: 1
Views: 270
Reputation: 3464
Before sending a message with an empty body, set AllowEmpty
to true (see source code function preSend
):
$mail = new PHPMailer();
$mail->AllowEmpty = true;
Upvotes: 1