我使用以下代码从我在ubuntu服务器上运行的php脚本发送邮件。
$to = "<receipients_email_id_here>";
$subject = "Hello";
$txt = "<Message Body>";
$headers = "From: Site Name <jims@mysite.com>\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
if(mail($to,$subject,$txt,$headers)){
print "Sent";
}
else
{
print "Failed";
}
当用户收到邮件时,他会在from字段中看到 "Site Name <jims@mysite.com>"
。我希望从字段到只显示“网站名称”,我还想在其中添加超链接以指向我的网站。
这可以从php代码中做到吗?
请帮助 谢谢
答案 0 :(得分:0)
我认为这与接收方客户端软件的设置有关。
答案 1 :(得分:0)
同意@Ahmad Hajjar,我认为hiperlink是不可能的,或者垃圾邮件发送者会喜欢它!