我正在尝试使用以下代码发送一个非常基本的PHP邮件;
if (mail('mymail@gmail.com','Test mail','Testing mail function!'))
{
echo "Email was sent successfully!";
}
else
{
echo "Email was not sent!";
}
但是,输出始终是'电子邮件未发送'。我使用Xaamp在我的机器上本地运行此脚本。
我已经尝试过为此研究解决方案,但我没有运气。它似乎与服务器配置有关。我试图在php.ini中修改sendmail,但它仍然没有用。
非常感谢任何帮助。
谢谢。
答案 0 :(得分:1)
答案 1 :(得分:0)
$this->email->from('mygmail@gmail.com', 'myname');//your mail address and name
$this->email->to('target@gmail.com'); //receiver mail
$this->email->subject('testing');
$this->email->message($message);
$this->email->send(); //sending mail
Configuration in sendmail.ini
路径c:\xampp\sendmail\sendmail.ini
配置
[sendmail]
smtp_server=smtp.gmail.com
smtp_port=25
error_logfile=error.log
debug_logfile=debug.log
auth_username=myemail@gmail.com
auth_password=yourgmailpassword
force_sender=myemail@gmail.com
in php.ini
路径c:\xampp\xampp\php\php.ini
[mail function]
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
sendmail_from = yourmail@gmail.com
答案 2 :(得分:0)
您需要运行Mercury来模拟邮件服务器,这是一个Mercury教程:http://system66.blogspot.com.es/2010/01/how-to-send-mail-from-localhost-with.html
或者您可以使用PHPMailer。