これで、添付ファイルなしでメールを送信できます:
wp_mail( $to, $subject, $message, $headers);
しかし、どうすれば添付ファイル付きのメールを送信できますか?
これで、添付ファイルなしでメールを送信できます:
wp_mail( $to, $subject, $message, $headers);
しかし、どうすれば添付ファイル付きのメールを送信できますか?
<?php wp_mail( $to, $subject, $message, $headers, $attachments ); ?>
以下を参照してください。
$attachments = array(WP_CONTENT_DIR . '/uploads/file_to_attach.zip');
$headers = 'From: My Name <myname@mydomain.com>' . "\r\n";
wp_mail('test@test.com', 'subject', 'message', $headers, $attachments);