Benim PHP webapp, ben bazı hatalar ortaya çıktığında e-posta yoluyla haberdar olmak istiyorum. Ben bu göndermek için Gmail hesabımı kullanmak istiyorum. Bu nasıl yapılabilir?
Gmail'in SMTP sunucusu çok özel bir yapılandırma gerektirir.
Dan Gmail help:
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
Muhtemelen Pear::Mail veya PHPMailer Bu ayarları ayarlayabilirsiniz. Daha fazla bilgi için kendi belgelerine göz atın.
Gmail'in SMTP Server ile PEAR'ın posta işlevini kullanabilirsiniz
Gmail'in SMTP sunucusunu kullanarak e-posta gönderirken zaman ne değeri dolar için rağmen, Gmail adresiniz geldi gibi görüneceğini unutmayın.
(Alınan aşağıdaki kodu 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>");
}
?>
Swift Mailer, genel olarak diğer posta sınıflara göre şişirilmiş kabul ederken de bunun için bir yaklaşım vardır:
http://www.swiftmailer.org/wikidocs/v3/connections/smtp#if_you_need_to_use_authentication