Created
July 5, 2013 02:58
-
-
Save ytkhs/5931382 to your computer and use it in GitHub Desktop.
mac で phpの mail() を使うとき
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
/* | |
% sudo postfix start | |
% tail -f /var/log/mail.log | |
*/ | |
<?php | |
mail( | |
'[email protected]', // your email address | |
'Test', // email subject | |
'This is an email', // email body | |
"From: Me <[email protected]>rn" // additional headers | |
); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment