Bruno Marsでも送ってみましょう。
headerの箇所はpostfixで設定されているため、削除
1 2 3 4 5 6 7 8 | $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のカバーでいってみましょう。
1 2 3 4 5 6 7 8 | $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でも問題なく送信できます。
1 2 3 4 5 6 7 8 9 10 11 12 | 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 ); |