我需要使用 PHP 通过本地主机(在 LAMP 和 WAMP 中)发送邮件。我怎样才能做到这一点?我阅读了许多有关此要求的教程,但没有得到任何解决方案。我读到使用 SMTP 我们可以做到这一点,但我将如何获得使用 SMTP 的凭据?希望有人能帮助我做到这一点。
先感谢您。
我需要使用 PHP 通过本地主机(在 LAMP 和 WAMP 中)发送邮件。我怎样才能做到这一点?我阅读了许多有关此要求的教程,但没有得到任何解决方案。我读到使用 SMTP 我们可以做到这一点,但我将如何获得使用 SMTP 的凭据?希望有人能帮助我做到这一点。
先感谢您。
用 PHP 发送邮件的方法有很多种。
http://php.net/manual/en/function.mail.php
<?php
// The message
$message = "Line 1\r\nLine 2\r\nLine 3";
// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70, "\r\n");
// Send
mail('caffeinated@example.com', 'My Subject', $message);
?>
它具有许多以不同方式发送邮件的功能(传输类型、附件等),并且易于使用。
http://swiftmailer.org/docs/sending.html
require_once 'lib/swift_required.php';
// Create the Transport
$transport = Swift_SmtpTransport::newInstance('smtp.example.org', 25)
->setUsername('your username')
->setPassword('your password')
;
/*
You could alternatively use a different transport such as Sendmail or Mail:
// Sendmail
$transport = Swift_SendmailTransport::newInstance('/usr/sbin/sendmail -bs');
// Mail
$transport = Swift_MailTransport::newInstance();
*/
// Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);
// Create a message
$message = Swift_Message::newInstance('Wonderful Subject')
->setFrom(array('john@doe.com' => 'John Doe'))
->setTo(array('receiver@domain.org', 'other@domain.org' => 'A name'))
->setBody('Here is the message itself')
;
// Send the message
$result = $mailer->send($message);