使用xampp从本地主机向特定的电子邮件ID发送电子邮件[重复]
Posted
技术标签:
【中文标题】使用xampp从本地主机向特定的电子邮件ID发送电子邮件[重复]【英文标题】:send email to specific email id from localhost using xampp [duplicate] 【发布时间】:2019-08-05 14:48:05 【问题描述】:我正在尝试从 localhost 向特定的电子邮件 ID 发送邮件。
我已阅读 this 和 this 以及其他一些帖子,但这并没有解决我的问题。
现在我有以下配置:
PHP.ini
[mail function]
; *For Win32 only*.
; http://php.net/smtp
SMTP=smtp.gmail.com
; http://php.net/smtp-port
smtp_port=587
; For Win32 only.
; http://php.net/sendmail-from
sendmail_from = mypersonal@gmail.com
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
SENDMAIL.ini
smtp_server=smtp.gmail.com
smtp_port=587
error_logfile=error.log
debug_logfile=debug.log
auth_username=mypersonal@gmail.com
auth_password=my above email password
force_sender=mypersonal@gmail.com
**PHP 代码是 **
$to = "someFriend@gmail.com";
$subject = "html email";
$message = "
<html>
<head>
<title>HTML email</title>
</head>
<body>
<p>This email contains HTML Tags!</p>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
</tr>
</table>
</body>
</html>
";
// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
// More headers
$headers .= 'From: <mypersonal@gmail.com>' . "\r\n";
$check = mail($to,$subject,$message,$headers);
if($check == true)
echo "successfully mail Sent";
else
echo "Email sending Failed";
我收到Email sending failed
,这个配置或代码有什么问题吗?
我还允许我的 Gmail 使用安全性较低的应用
我也很困惑将我自己的 gmail id 放在哪里,邮件将从哪里发送给其他人。
请帮忙! 谢谢
【问题讨论】:
有一些像我提到的东西,用什么来代替这些或保留它们,例如 force_sender=<?php error_reporting(E_ALL); ini_set('display_errors', 1);
以查看它是否产生任何结果。
好的,我会的。你能看看上面的代码,它应该工作得很好还是缺少什么? @RiggsFolly 你怎么看?
在sendmail.ini
添加error_logfile=sendmail_error.log
和debug_logfile=sendmail_debug.log
或快速阅读The manual
【参考方案1】:
Gmail 默认不允许这样做。检查您的 google 帐户设置并允许访问不太安全的应用程序。或者生成应用专用密码并在此处使用。
【讨论】:
我已经这样做了,问题的最后部分也提到了以上是关于使用xampp从本地主机向特定的电子邮件ID发送电子邮件[重复]的主要内容,如果未能解决你的问题,请参考以下文章
无法使用汞 XAMPP 从本地主机发送 Drupal 通知邮件