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_mail有没有人告诉我如何使用wordpress的功能发送附件电子邮件?我正在使用以下代码,但它不起作用
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);
在这种情况下,您的附件设置为标题。