【问题标题】:How to send an attachment mail using wp_mail mail如何使用 wp_mail 发送附件邮件
【发布时间】:2012-10-19 13:38:48
【问题描述】:

有人告诉我如何使用wordpress 的wp_mail 功能发送附件电子邮件吗? 我正在使用以下代码,但它不起作用

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

谢谢

【问题讨论】:

    标签: wordpress email


    【解决方案1】:

    试试这个然后告诉我--

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

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

    【讨论】:

    • 谢谢很多人@swapnesh 现在工作了,我真的很开心:)
    • 这不起作用。我用WP_CONTENT_DIR$mail_attachment = array(WP_CONTENT_DIR . '/uploads/image.png');
    猜你喜欢
    • 2016-09-20
    • 2019-07-02
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2013-12-09
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多