这是我通过 xampp 发送邮件的代码,我已经从 xampp 修改了 php.ini 和 sendmail.ini。运行 php 后,我没有收到电子邮件。请帮我 。
php.ini
[mail function]
SMTP =smtp.gmail.com <br>
smtp_port =587
; For Win32 only.
;sendmail_from =email@gmail.com
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
发送邮件.ini
smtp_server=smtp.gmail.com
; smtp port (normally 25)
smtp_port=587
auth_username=email@gmail.com <br>
auth_password=password <br>
force_sender=email@gmail.com
用于发送电子邮件的 php 代码是这样的
mail("garvit.j742@gmail.com","subject","this is the mail","From: email@gmail.com");
这是我的 php 代码。告诉我错误??