回答編集履歴
1
追記
test
CHANGED
@@ -7,3 +7,19 @@
|
|
7
7
|
PHP: mb_send_mail - Manual
|
8
8
|
|
9
9
|
[http://php.net/manual/ja/function.mb-send-mail.php](http://php.net/manual/ja/function.mb-send-mail.php)
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
----
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
追記
|
18
|
+
|
19
|
+
```PHP
|
20
|
+
|
21
|
+
$header = "From: info@example.com";
|
22
|
+
|
23
|
+
mb_send_mail($to, $subject, $body, $header);
|
24
|
+
|
25
|
+
```
|