user241621
user241621

Reputation: 15

How to send empty mail with phpailer

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

Answers (1)

halfbit
halfbit

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

Related Questions