如何使用wp_mail邮件发送附件邮件

Sha*_*ukh 5 email wordpress

有没有人告诉我如何使用wp_mailwordpress的功能发送附件电子邮件?我使用以下代码,但它无法正常工作

$attachments = array(ABSPATH . '/uploads/abc.png');
wp_mail($email, 'Testing Attachment' , 'This is subscription',$attachments);
Run Code Online (Sandbox Code Playgroud)

谢谢

swa*_*esh 7

试试这个然后告诉我 -

$attachments = array(ABSPATH . '/uploads/abc.png');
wp_mail($email, 'Testing Attachment' , 'This is subscription','This is for header',$attachments);
Run Code Online (Sandbox Code Playgroud)

在这种情况下,您的附件设置为标题.