Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
wp_mailwordpressの機能を使って添付メールを送る方法を教えてくれる人はいますか?次のコードを使用していますが、機能していません
wp_mail
$attachments = array(ABSPATH . '/uploads/abc.png'); wp_mail($email, 'Testing Attachment' , 'This is subscription',$attachments);
ありがとう
これを試してから教えてください --
$attachments = array(ABSPATH . '/uploads/abc.png'); wp_mail($email, 'Testing Attachment' , 'This is subscription','This is for header',$attachments);
この場合、添付ファイルはヘッダーとして設定されています。