PHP を使用して (LAMP と WAMP の両方で) localhost 経由でメールを送信する必要があります。これどうやってするの?この要件に関する多くのチュートリアルを読みましたが、解決策はありませんでした。SMTP を使用してこれを行うことができると読みましたが、SMTP を使用するための資格情報を取得するにはどうすればよいですか? 誰かが私を助けてくれることを願っています。
前もって感謝します。
PHP を使用して (LAMP と WAMP の両方で) localhost 経由でメールを送信する必要があります。これどうやってするの?この要件に関する多くのチュートリアルを読みましたが、解決策はありませんでした。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);