web-dev-qa-db-ja.com

wp_mail添付ファイルが機能しない

こんにちは私はwordpressのwp_mail機能を使用して添付ファイル付きのメールを送信しようとしていますが、私のメールボックスに添付ファイルが届きません。

あなたは私のベローコードをチェックして、私が間違っているところを私に導いてください。添付の画像をシードしているのがわかります。

<?php
    $to  = '[email protected]';
    $subject = 'WordPress wp_mail';
    $message = '
    <html>
    <body>
        <table rules="all" style="border-color: #666;" cellpadding="10">
          <tr>Hello WordPress</tr>
        </table>          
    </body>
    </html>
    ';

    $attachments = array( 'http://sitename/project/wp-content/plugins/my-plugin/uploads/sample_photo_01.jpg' );
    //$attachments = array(WP_CONTENT_DIR  . '/uploads/'.$_FILES["myfile"]["name"]);
    $headers[] = 'MIME-Version: 1.0' . "\r\n";
    $headers[] = 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
    $headers[] = 'From: '.get_option( 'blogname' ).' <'.get_option( 'admin_email' ).'>';

    wp_mail( $to, $subject, $message, $headers, $attachments );
?>

ありがとう。

1
Manan

添付ファイルは常に絶対ファイルシステムパスを使うべきです。

また、電子メールのContent-Typeを変更するには、wp_mail_content_typeフィルタを使うべきです。

<?php
function my_custom_email() {
    $to  = '[email protected]';
    $subject = 'WordPress wp_mail';
    $message = '
    <html>
    <body>
        <table rules="all" style="border-color: #666;" cellpadding="10">
          <tr>Hello WordPress</tr>
        </table>          
    </body>
    </html>
    ';

    $attachments = array(  WP_PLUGIN_DIR . '/my-plugin/uploads/sample_photo_01.jpg' );
    $headers[] = 'From: '.get_option( 'blogname' ).' <'.get_option( 'admin_email' ).'>';
    add_filter( 'wp_mail_content_type', 'my_custom_email_content_type' );
    return wp_mail( $to, $subject, $message, $headers, $attachments );
}

function my_custom_email_content_type() {
    return 'text/html';
}

wp_mail_content_typeフィルターがこのEメールにのみ適用されるように、コード全体を関数に入れました。

出典:
http://codex.wordpress.org/Function_Reference/wp_mail
http://codex.wordpress.org/Plugin_API/Filter_Reference/wp_mail_content_type

6
A.Jesin

あなたはこのコードを試すことができます

  $attachments = array( WP_CONTENT_DIR . '/uploads/file_to_attach.Zip' );
   $headers = 'From: My Name <[email protected]>' . "\r\n";
   wp_mail('[email protected]', 'subject', 'message', $headers, $attachments );

私は http://codex.wordpress.org/Function_Reference/wp_mailから入手します

0
Maidul