11

在我的 PHP Web 应用程序中,我希望在发生某些错误时通过电子邮件收到通知。我想用我的 Gmail 帐户发送这些。怎么可能做到这一点?

4

2 回答 2

10

Gmail 的 SMTP 服务器需要非常具体的配置。

来自Gmail 帮助

Outgoing Mail (SMTP) Server (requires TLS)
 - smtp.gmail.com
 - Use Authentication: Yes
 - Use STARTTLS: Yes (some clients call this SSL)
 - Port: 465 or 587
Account Name:   your full email address (including @gmail.com)
Email Address:  your email address (username@gmail.com)
Password:     your Gmail password 

您可能可以在Pear::MailPHPMailer中设置这些设置。查看他们的文档以获取更多详细信息。

于 2008-08-30T19:22:42.540 回答
4

您可以将 PEAR 的邮件功能与 Gmail 的 SMTP 服务器一起使用

请注意,当使用 Gmail 的 SMTP 服务器发送电子邮件时,它看起来像是来自您的 Gmail 地址,尽管您的价值是 $from。

(以下代码取自About.com Programming Tips

<?php
require_once "Mail.php";

$from = "Sandra Sender <sender@example.com>";
$to = "Ramona Recipient <recipient@example.com>";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";

// stick your GMAIL SMTP info here! ------------------------------
$host = "mail.example.com";
$username = "smtp_username";
$password = "smtp_password";
// --------------------------------------------------------------

$headers = array ('From' => $from,
  'To' => $to,
  'Subject' => $subject);
$smtp = Mail::factory('smtp',
  array ('host' => $host,
    'auth' => true,
    'username' => $username,
    'password' => $password));

$mail = $smtp->send($to, $headers, $body);

if (PEAR::isError($mail)) {
  echo("<p>" . $mail->getMessage() . "</p>");
 } else {
  echo("<p>Message successfully sent!</p>");
 }
?>
于 2008-08-30T16:21:44.907 回答