配列外に複数の受信者の電子メールアドレスを定義したい。好き
$adminmail = get_option(admin_email);
$adminmail2 = like an email address;
$multiple_recipients = array($adminmail,$adminmail2);
$subj = 'The email subject';
$body = 'This is the body of the email';
wp_mail( $multiple_recipients, $subj, $body );
これは可能ですか?