dongxian2863 2016-12-28 08:47
浏览 60
已采纳

发送多封电子邮件失败的php邮件[重复]

This question already has an answer here:

I want to send the email to two emails in one time, the first one to office@example.com the second one to guest who fill the form. Here my code

$email_to = "$c[email]"; 
$email_toko="office@example.com";
$subjek="**The Bandha Hotel** – Request for Pricing Submitted";

$dari = "From: {$email_toko}
"
      . "MIME-Version: 1.0
"
      . "Reply-To: {$email_to}
"
      . "Content-type: text/html; charset=iso-8859-1
"
      . 'X-Mailer: PHP/' . phpversion();
mail($email_to,$subjek,$pesan,$dari);
mail($email_toko,$subjek,$pesan,$dari);

but the email just send to $email_toko or just go to office@example.com. So the guest doesn't receive the email.help me please

</div>
  • 写回答

1条回答 默认 最新

  • doufeiqiong3515 2016-12-28 09:00
    关注

    First thing is that you can add Multiple recipients in mail() as below.

    // Multiple recipients
    $to = 'johny@example.com, sally@example.com'; // note the comma
    

    In your code you are sending email separately to both of your address. mail() function returns Boolean if mail send or fail so you can check the by dumping response of your mail function as below.

    $mailRes = mail($email_to,$subjek,$pesan,$dari);
    var_dump($mailRes);
    

    Also enable error reporting during development mode its helpful.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题