3

ヘッダーなしで wp_mail を書いてもいいですか?

関数の使い方は <?php wp_mail( $to, $subject, $message, $headers, $attachments ); ?>

Q: このように使用できますか? <?php wp_mail( $to, $subject, $message); ?>

4

3 に答える 3

4

はい、パラメータの下のテキストを確認する$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

于 2013-08-01T09:38:13.213 に答える
4

はい、使用できます:

<?php wp_mail( $to, $subject, $message); ?>

$headers と $attachments は、デフォルトでは空です (オプションです)。

于 2013-08-01T08:23:58.237 に答える
0

はい、このように使用できます

<?php wp_mail( $to, $subject, $message); ?>

$headers はオプションのパラメーターです

于 2013-08-01T09:31:27.707 に答える