作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
用php发送邮件时,如何更改发送的邮件的标题,如下图所示。
我想把“联系”这个词改成别的。
这是我当前的代码:
$msg = "Thank you, " ."$inputUsername". ", for joining "."<a href='http://www.gamingpopulace.com'>Gaming Populace!</a> "."We hope that you enjoy the site and become very active." ;
$topic = "Thanks for joining";
$headers = "From: contact@gamingpopulace.com";
$headers .= "\r\nReply-To: contact@gamingpopulace.com\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1";
$email = preg_replace("([\r\n])", "", $email);
if (mail($email,$topic,$msg, $headers)) {
header('Location: ../index ');
}else {
header('Location: ../index ');
}
我需要添加另一个标题吗?
谢谢
最佳答案
$headers = "From: Gaming Populace < contact@gamingpopulace.com >\n";
像这样修改你的标题
关于php - 如何为 PHP 电子邮件添加标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41321837/
我是一名优秀的程序员,十分优秀!