我正在使用 php 脚本发送电子邮件,并且我从地址设置为
$headers = "MIME-Version: 1.0" . "$from" . "\r\n";
$headers.= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
因此,发往我的邮件地址的邮件为 from support@mysite.com
,但我需要将 from 地址设置为support@gmail.com
。但它没有与修改后的 from 地址一起发送。所以,请帮助解决这个问题..