phpでメール送信

Bruno Marsでも送ってみましょう。

headerの箇所はpostfixで設定されているため、削除

$to = "hoge@gmail.com";
$subject = "Just the Way You Are";
$message = "Oh, her eyes, her eyes make the stars look like they're not shinin'
Her hair, her hair falls perfectly without her trying
She's so beautiful and I tell her everyday";
// $headers = "From: ";
 
mail($to, $subject, $message);

届いています。

いいですね~♪♪♪

では、Atsushiのカバーでいってみましょう。

$subject = "Just the Way You Are";
$message = "When I see your face
ありのままの君が
愛おしいよ
Just the way you Are";
// $headers = "From: ";
 
mail($to, $subject, $message);

あれ?文字化けせずに届いてますね。ぬぬ。

mb_send_mailでも問題なく送信できます。

mb_language("Japanese");
mb_internal_encoding("UTF-8");
$to = "hoge@gmail.com";

$subject = "Just the Way You Are";
$message = "When I see your face
ありのままの君が
愛おしいよ
Just the way you Are";
// $headers = "From: ";
 
mb_send_mail($to, $subject, $message);