Created
February 2, 2014 23:50
-
-
Save suzuki/8776883 to your computer and use it in GitHub Desktop.
Swift Mailer sample / normail email
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require 'vendor/autoload.php'; | |
$transport = Swift_SmtpTransport::newInstance('localhost', 25); | |
$mailer = Swift_Mailer::newInstance($transport); | |
$message = Swift_Message::newInstance(); | |
$message | |
->setFrom(['[email protected]']) | |
->setTo(['YOUR_GMAIL_ADDRESS']) | |
->setSubject('テストメール') | |
->setBody('テストメール本文') | |
; | |
$result = $mailer->send($message); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment