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条)

报告相同问题?

悬赏问题

  • ¥23 (标签-bug|关键词-密码错误加密)
  • ¥66 比特币地址如何生成taproot地址
  • ¥20 数学建模数学建模需要
  • ¥15 关于#lua#的问题,请各位专家解答!
  • ¥15 什么设备可以研究OFDM的60GHz毫米波信道模型
  • ¥15 不知道是该怎么引用多个函数片段
  • ¥30 关于用python写支付宝扫码付异步通知收不到的问题
  • ¥15 隐藏系统界面pdf的打印、下载按钮
  • ¥15 基于pso参数优化的LightGBM分类模型
  • ¥15 安装Paddleocr时报错无法解决