Created
July 14, 2013 12:59
-
-
Save baobao/5994190 to your computer and use it in GitHub Desktop.
phpでメール送信
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 | |
| mb_language("Japanese"); | |
| mb_internal_encoding("UTF-8"); | |
| $mail_to = '[email protected]'; | |
| $subject = 'test'; | |
| $mail_text = 'テストメール'; | |
| $reply_to = 'From: [email protected]'; | |
| $result = mb_send_mail($mail_to, $subject, $mail_text, $reply_to); | |
| if ($result) { | |
| echo 'success'; | |
| } | |
| else { | |
| echo 'fail'; | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment