Function set_magic_quotes_runtime() is deprecated in phpmailer

后端 未结 3 1479
清酒与你
清酒与你 2021-01-13 14:52

I want to embed an image with PHP Mailer version 5.1.. and my PHP version is 5.4.7

The script execution is a success, and I can receive emails with embedded images, b

3条回答
  •  有刺的猬
    2021-01-13 15:36

    add these code into the top of your script

    @set_magic_quotes_runtime(false);
    ini_set('magic_quotes_runtime', 0);
    

提交回复
热议问题