#1 楼
// Pear Mail Library
require_once "Mail.php";
$from = '<fromaddress@gmail.com>';
$to = '<toaddress@yahoo.com>';
$subject = 'Hi!';
$body = "Hi,\n\nHow are you?";
$headers = array(
'From' => $from,
'To' => $to,
'Subject' => $subject
);
$smtp = Mail::factory('smtp', array(
'host' => 'ssl://smtp.gmail.com',
'port' => '465',
'auth' => true,
'username' => 'johndoe@gmail.com',
'password' => 'passwordxxx'
));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo('<p>' . $mail->getMessage() . '</p>');
} else {
echo('<p>Message successfully sent!</p>');
}
#2 楼
使用Swift邮件程序,通过Gmail凭据发送邮件非常容易:<?php
require_once 'swift/lib/swift_required.php';
$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465, "ssl")
->setUsername('GMAIL_USERNAME')
->setPassword('GMAIL_PASSWORD');
$mailer = Swift_Mailer::newInstance($transport);
$message = Swift_Message::newInstance('Test Subject')
->setFrom(array('abc@example.com' => 'ABC'))
->setTo(array('xyz@test.com'))
->setBody('This is a test mail.');
$result = $mailer->send($message);
?>
评论
只需更改GMAIL_USERNAME,GMAIL_PASSWORD以及“发件人”和“收件人”地址就可以了。没有其他解决方案对我有用。谢谢。
– MarcoMuciño
13年5月14日在18:08
我同意,快速邮递员是一种邮寄解决方案,比搞砸梨要容易得多。不要忘记启用PHP的php_openssl扩展。
–索特
13年5月30日下午4:02
使用SwiftMailer的不错的解决方案! +1
–阿马尔·穆拉利(Amal Murali)
2014年2月16日在6:16
啊icant让swiftmailer上班。我不知道如何使用该“ composer”,所以我只是从github下载了swiftmailer zip,然后启用了open_ssl,然后提供了我的gmail电子邮件和密码,但仍然无法正常工作。
– boi_echos
2014-09-14 13:05
抱歉我的愚蠢。您必须打开Gmail帐户,因为有一封电子邮件告诉您启用“安全性较低的应用”。然后它现在工作了
– boi_echos
2014年9月14日下午13:09
#3 楼
您的代码似乎没有使用TLS(SSL),这是向Google发送邮件(使用端口465或587)所必需的。您可以通过设置
$host = "ssl://smtp.gmail.com";
您的代码看起来像这样的示例,该示例在主机名方案中引用ssl://。
#4 楼
我不建议使用Pear Mail。自2010年以来未进行过更新。源代码几乎已经过时,以PHP 4样式编写,并且已经发布了许多错误/错误(谷歌它)。我正在使用Swift Mailer。Swift Mailer集成到任何用PHP 5编写的Web应用程序中,提供了一种灵活而优雅的面向对象的方法来发送具有多种功能的电子邮件。
使用SMTP,sendmail,postfix或您自己的自定义Transport
实现发送电子邮件。
支持需要用户名和密码和/或加密的服务器。
在不剥离请求数据的情况下免受标头注入攻击。
发送兼容MIME的HTML /多部分电子邮件。
使用事件驱动的插件可以定制库。
处理大型附件和内存不足的嵌入式/嵌入式图像
使用。
它是一个免费的开放源代码,您可以下载Swift Mailer并上传到您的服务器。 (功能列表是从所有者网站复制的。)
Gmail SSL / SMTP和Swift Mailer的工作示例在这里...
// Swift Mailer Library
require_once '../path/to/lib/swift_required.php';
// Mail Transport
$transport = Swift_SmtpTransport::newInstance('ssl://smtp.gmail.com', 465)
->setUsername('username@gmail.com') // Your Gmail Username
->setPassword('my_secure_gmail_password'); // Your Gmail Password
// Mailer
$mailer = Swift_Mailer::newInstance($transport);
// Create a message
$message = Swift_Message::newInstance('Wonderful Subject Here')
->setFrom(array('sender@example.com' => 'Sender Name')) // can be $_POST['email'] etc...
->setTo(array('receiver@example.com' => 'Receiver Name')) // your email / multiple supported.
->setBody('Here is the <strong>message</strong> itself. It can be text or <h1>HTML</h1>.', 'text/html');
// Send the message
if ($mailer->send($message)) {
echo 'Mail sent successfully.';
} else {
echo 'I am sure, your configuration are not correct. :(';
}
希望对您有所帮助。快乐的编码... :)
评论
这不再起作用,我总是收到返回消息“ 535-5.7.8用户名和密码不被接受”。我的凭据很好,并且我已将“允许安全性较低的应用程序”设置为“开”。有人知道解决办法吗?
– AndrewB
17年5月17日在17:08
Swift似乎在PHP 5.x中不起作用-不理解??合并-炸毁。
– HerrimanCoder
18年5月5日在4:51
#5 楼
<?php
date_default_timezone_set('America/Toronto');
require_once('class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
$mail = new PHPMailer();
$body = "gdssdh";
//$body = eregi_replace("[\]",'',$body);
$mail->IsSMTP(); // telling the class to use SMTP
//$mail->Host = "ssl://smtp.gmail.com"; // SMTP server
$mail->SMTPDebug = 1; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port for the GMAIL server
$mail->Username = "user@gmail.com"; // GMAIL username
$mail->Password = "password"; // GMAIL password
$mail->SetFrom('contact@prsps.in', 'PRSPS');
//$mail->AddReplyTo("user2@gmail.com', 'First Last");
$mail->Subject = "PRSPS password";
//$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML($body);
$address = "user2@yahoo.co.in";
$mail->AddAddress($address, "user2");
//$mail->AddAttachment("images/phpmailer.gif"); // attachment
//$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>
评论
为什么要设置主机两次,哪一个是正确的主机?
– Emile Bergeron
16-3-9的3:13
从哪里获得class.phpmailer.php文件?仅粘贴代码不是那么有用,请在代码上也包含更多说明!
– GeneCode
18年1月24日在1:54
尽管某些语法已过时,但PHPMailer最终成为了我最好的解决方案,+ 1
– zoltar
18 Mar 15 '18 at 0:43
#6 楼
SwiftMailer可以使用外部服务器发送电子邮件。下面的示例演示了如何使用Gmail服务器:
require_once "lib/Swift.php";
require_once "lib/Swift/Connection/SMTP.php";
//Connect to localhost on port 25
$swift =& new Swift(new Swift_Connection_SMTP("localhost"));
//Connect to an IP address on a non-standard port
$swift =& new Swift(new Swift_Connection_SMTP("217.147.94.117", 419));
//Connect to Gmail (PHP5)
$swift = new Swift(new Swift_Connection_SMTP(
"smtp.gmail.com", Swift_Connection_SMTP::PORT_SECURE, Swift_Connection_SMTP::ENC_TLS));
#7 楼
问题中列出的代码需要进行两项更改$host = "ssl://smtp.gmail.com";
$port = "465";
SSL连接需要端口465。
#8 楼
通过Gmail使用phpMailer库发送邮件请从Github中下载库文件
<?php
/**
* This example shows settings to use when sending via Google's Gmail servers.
*/
//SMTP needs accurate times, and the PHP time zone MUST be set
//This should be done in your php.ini, but this is how to do it if you don't have access to that
date_default_timezone_set('Etc/UTC');
require '../PHPMailerAutoload.php';
//Create a new PHPMailer instance
$mail = new PHPMailer;
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 2;
//Ask for HTML-friendly debug output
$mail->Debugoutput = 'html';
//Set the hostname of the mail server
$mail->Host = 'smtp.gmail.com';
// use
// $mail->Host = gethostbyname('smtp.gmail.com');
// if your network does not support SMTP over IPv6
//Set the SMTP port number - 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission
$mail->Port = 587;
//Set the encryption system to use - ssl (deprecated) or tls
$mail->SMTPSecure = 'tls';
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//Username to use for SMTP authentication - use full email address for gmail
$mail->Username = "username@gmail.com";
//Password to use for SMTP authentication
$mail->Password = "yourpassword";
//Set who the message is to be sent from
$mail->setFrom('from@example.com', 'First Last');
//Set an alternative reply-to address
$mail->addReplyTo('replyto@example.com', 'First Last');
//Set who the message is to be sent to
$mail->addAddress('whoto@example.com', 'John Doe');
//Set the subject line
$mail->Subject = 'PHPMailer GMail SMTP test';
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
$mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__));
//Replace the plain text body with one created manually
$mail->AltBody = 'This is a plain-text message body';
//Attach an image file
$mail->addAttachment('images/phpmailer_mini.png');
//send the message, check for errors
if (!$mail->send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
#9 楼
#10 楼
Gmail需要端口465,这也是phpmailer中的代码:)#11 楼
要在Ubuntu中安装PEAR的Mail.php,请运行以下命令: sudo apt-get install php-pear
sudo pear install mail
sudo pear install Net_SMTP
sudo pear install Auth_SASL
sudo pear install mail_mime
#12 楼
#13 楼
我尝试了@shasi kanth提供的建议,但没有成功。我阅读了文档,几乎没有进行任何更改。因此,我设法使用此代码通过Gmail发送邮件,其中由作曲家和作曲家获取vendor / autoload.php要求“ swiftmailer / swiftmailer:^ 6.0”:<?php
require_once 'vendor/autoload.php';
$transport = (new Swift_SmtpTransport('smtp.gmail.com', 465, 'ssl'))->setUsername ('SendingMail')->setPassword ('Password');
$mailer = new Swift_Mailer($transport);
$message = (new Swift_Message('test'))
->setFrom(['Sending mail'])
->setTo(['Recipient mail'])
->setBody('Message')
;
$result = $mailer->send($message);
?>
#14 楼
设置'auth' => false,
另外,请查看端口25是否起作用。
评论
什么是Mail.php?我从哪里得到这个文件?
– Zain Shaikh
2010-11-26 23:23
谁能给我一个链接,我可以在其中获得Mail.php文件。因为我尝试过,所以无法正常工作,谢谢
–优素福
2011年4月17日下午6:52
上面的示例中的@符号在哪里?我在那里看不到一个!
– darkAsPitch
2011年6月30日4:08
我相信myaccount.gmail.com与电子邮件标准中的myaccount@gmail.com相同。
– Sherwin Flight
2011-10-14 9:02
如果您指定了服务器,则无需包括@gmail。只需输入myaccount作为用户名即可。
–杰克
2012年4月16日在6:08