dqwnxdhb88531 2015-11-17 06:21
浏览 15
已采纳

将Html插入邮件功能 - PHP

I am doing a reset password for a site i just felt like doing, Ok So What I Am trying to insert a HTML 'A' Tag into my $message Variable and show it in The Email i send out to where it will be a link

For Example:

$to = $torecoveremail;
$subject = "You Forgot Your Password At: " . $title;
$message = "
    Your Username: " . $recoverusername . "
    Your Email: " . $recoveruseremail . "
    Your First Name: " . $recoveruserfname . "
    Your Last Name: " . $recoveruserlname . "
    Reset Password Follow This Link:
    <a href=\"yourphotomake.info/shiylohs/cms/admin432/passreset.php?id=" . $passresetid . "\">Reset Password</a> ";
mail($to, $subject, $message);

and the out put from the email that is sent is:

Your Username: ben
    Your Email: ben@tvstartup.com
    Your First Name: ben
    Your Last Name: ben
    Reset Password Follow This Link:
    <a href="yourphotomake.info/shiylohs/cms/admin432/passreset.php?id=15">Reset Password</a>           

And what I want the email out put to be is this:

Your Username: ben
    Your Email: ben@tvstartup.com
    Your First Name: ben
    Your Last Name: ben
    Reset Password Follow This Link:
    Reset Password

Thank You A Lot

  • 写回答

2条回答 默认 最新

  • dongtan2603 2015-11-17 06:33
    关注

    You have specify headers.

    $to = $torecoveremail;
    $subject = "You Forgot Your Password At: " . $title;
    
    $headers = "From: bob@example.com
    ";
    $headers .= "CC: bob@example.com
    ";
    $headers .= "MIME-Version: 1.0
    ";
    $headers .= "Content-Type: text/html; charset=ISO-8859-1
    ";
    
    $message = '<html><body>';
    $message .= '<p>Your Username: ben</p>';
    $message .= '<p>Your Email: ben@tvstartup.com</p>';
    $message .= '<p>Your First Name: ben</p>';
    $message .= '<p>Your Last Name: ben</p>';
    $message .= '<p>Reset Password Follow This Link:</p>';
    $message .= '<p><a href="yourphotomake.info/shiylohs/cms/admin432/passreset.php?id=15">Reset Password</a></p>';
    $message .= '</body></html>';
    
    mail($to, $subject, $message, $headers);
    

    For more options use PHPMAILER. Its very useful.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?
  • ¥15 matlab(相关搜索:紧聚焦)