I am using the php mailer class to send multiple attachment emails. Two errors come:
The first these two lines appear when sending emails, these errors belong to the class .phpmailer.php:
Deprecated: the set_magic_quotes_runtime () function is deprecated in / var / www / dev 01 / maiarn / class.phpmailer.php on line 1471
Deprecated: the set_magic_quotes_runtime () function is deprecated in / var / www / dev 01 / maiarn / class.phpmailer.php on line 1475 The message has been sent.
The second letter is sent with only one attachment, the second - where:
$mail->AddAttachment("logo.jpg"); // attachment $mail->AddAttachment("logo.jpg");
Any help
source share