回答編集履歴
1
追記
answer
CHANGED
@@ -2,4 +2,12 @@
|
|
2
2
|
第4引数にFromヘッダを指定するか、php.iniにデフォルトのアドレスを指定します。
|
3
3
|
|
4
4
|
PHP: mb_send_mail - Manual
|
5
|
-
[http://php.net/manual/ja/function.mb-send-mail.php](http://php.net/manual/ja/function.mb-send-mail.php)
|
5
|
+
[http://php.net/manual/ja/function.mb-send-mail.php](http://php.net/manual/ja/function.mb-send-mail.php)
|
6
|
+
|
7
|
+
----
|
8
|
+
|
9
|
+
追記
|
10
|
+
```PHP
|
11
|
+
$header = "From: info@example.com";
|
12
|
+
mb_send_mail($to, $subject, $body, $header);
|
13
|
+
```
|