我尝试仅使用 XAMPP 发送电子邮件& Gmail ,不使用 PHPMailer 我尝试通过Xampp和Gmail帐户发送电子邮件。
我已经激活了Gmail帐户,但安全性较低的应用访问权限很少。
我也配置了php.ini& sendmail.ini。
不知何故,当我尝试发送电子邮件时,它不会显示任何错误消息,并且未发送电子邮件。
注意:如果使用PHPMailer,一切都运行良好,但是当我尝试基本的Xampp邮件时无效。
这是我的配置和PHP代码:
的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 = myemail@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
[sendmail]
smtp_server=smtp.gmail.com
smtp_port=587
smtp_ssl=auto
error_logfile=error.log
auth_username=myemail@gmail.com
auth_password=mypassword
force_sender=myemail@gmail.com
SendEmail.php
<?php
$to = "receiver@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: <webmaster@example.com>' . "\r\n";
$headers .= 'Cc: myboss@example.com' . "\r\n";
mail($to,$subject,$message,$headers);
?>