ヘッダーなしで wp_mail を書いてもいいですか?
関数の使い方は
<?php wp_mail( $to, $subject, $message, $headers, $attachments ); ?>
Q: このように使用できますか? <?php wp_mail( $to, $subject, $message); ?>
はい、パラメータの下のテキストを確認する$headers
と、(string or array) (optional)
$to
(string or array) (required) The intended recipient(s). Multiple recipients may be specified using an array or a comma-separated string.
Default: None
$subject
(string) (required) The subject of the message.
Default: None
$message
(string) (required) Message content.
Default: None
$headers
(string or array) (optional) Mail headers to send with the message. (advanced)
Default: Empty
$attachments
(string or array) (optional) Files to attach: a single filename, an array of filenames, or a newline-delimited string list of multiple filenames. (advanced)
Default: Empty
ソース: http://codex.wordpress.org/Function_Reference/wp_mail#Parameters
はい、使用できます:
<?php wp_mail( $to, $subject, $message); ?>
$headers と $attachments は、デフォルトでは空です (オプションです)。
はい、このように使用できます
<?php wp_mail( $to, $subject, $message); ?>
$headers はオプションのパラメーターです