php邮件功能发送多封电子邮件

发布于 2024-12-11 22:16:15 字数 1818 浏览 0 评论 0原文

我正在尝试用php mail实现简单的电子邮件功能。代码如下,

    $headers = 'From: "From Display Name" <[email protected]>' . PHP_EOL .
       'Cc: "CC Display Name" <[email protected]>' . PHP_EOL .
       'X-Mailer: PHP-' . phpversion() . PHP_EOL;
   if(mail('[email protected]', 'test', 'test message', $headers, '[email protected]')) echo "sent";
   else "not sent";

但问题是这段代码发送同一封电子邮件 6 次,我不明白为什么......有什么想法吗? “虽然已发送,但只回显一次!!!”

完整代码:

if($_POST['submitted']=="1"){
$error = "";

if($error==""){

    $headers = 'From: "From Display Name" <[email protected]>' . PHP_EOL .
       'Cc: "CC Display Name" <[email protected]>' . PHP_EOL .
       'X-Mailer: PHP-' . phpversion() . PHP_EOL;
   if(mail('[email protected]', 'test', 'test message', $headers, '[email protected]')) echo "sent";
   else "not sent";

}

}

I am trying to implement the simple email function with php mail. Code is as follows

    $headers = 'From: "From Display Name" <[email protected]>' . PHP_EOL .
       'Cc: "CC Display Name" <[email protected]>' . PHP_EOL .
       'X-Mailer: PHP-' . phpversion() . PHP_EOL;
   if(mail('[email protected]', 'test', 'test message', $headers, '[email protected]')) echo "sent";
   else "not sent";

But problem is this code is sending the same email 6 times, and i can not figureout why... any ideas?
The "Sent is echoed only one time though!!!"

Complete CODE:

if($_POST['submitted']=="1"){
$error = "";

if($error==""){

    $headers = 'From: "From Display Name" <[email protected]>' . PHP_EOL .
       'Cc: "CC Display Name" <[email protected]>' . PHP_EOL .
       'X-Mailer: PHP-' . phpversion() . PHP_EOL;
   if(mail('[email protected]', 'test', 'test message', $headers, '[email protected]')) echo "sent";
   else "not sent";

}

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月棠 2024-12-18 22:16:16

好的,原因如下:为了验证和“!!|-: 安全:-|!!”检查,该模板在浏览器中显示结果之前被调用了 6 次!!!!!!!!!!

ok, here is the reason: For validation and "!!|-: SECURITY :-|!!" checks, that template is getting called 6 times before Showing the results in browser!!!!!!!!!!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文