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

时间:2012-10-30 08:28:49

标签: wordpress email

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

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

由于

1 个答案:

答案 0 :(得分:6)

试试这个,然后让我知道 -

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

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

相关问题