Add attachment through PHPMailer

后端 未结 1 722
南方客
南方客 2020-12-03 10:39

I have this following piece of code of PHPMailer. The problem is, that the file uploads to the server successfully but the attachment is not sent in the mail. The attachment

相关标签:
1条回答
  • 2020-12-03 11:37

    Change

    $mail->MsgHTML();
    

    to

    $mail->Body;
    

    Source: here

    0 讨论(0)
提交回复
热议问题