web-dev-qa-db-ja.com

HTMLメールにWordPressテンプレートを使用する

フォーム送信後にEメールを送信する必要があるプラグインを作成しています。

私はこれにwp_mail()を使っています、そしてそれはうまく働きます。私の問題は、私のコードではHTMLがたくさんのPHP文字列が次のように変数に追加されて生成されることです。

$content = $html_headers;
$content .= '<h1>' . the_title($post_id) . '</h1>';
$content .= '<p>' . $post_body . '</p>;

..etc

私は現在そのような30行以上を持っています。そしてそれは私がついにできるようになります:

    //add filter to allow html
    add_filter('wp_mail_content_type', create_function('', 'return "text/html"; '));

    //Send email
    wp_mail( '[email protected]', 'mail tester', $content, 'From: some one <[email protected]>' );

    //remove filter to allow html (avoids some conflict.)
    remove_filter('wp_mail_content_type', create_function('', 'return "text/html"; '));

メールの内容を生成するために通常のWordPressテーマのtemplate-tagsを使用する別のファイルを参照することができれば、私はそれを好むでしょう。そのため、別のファイルでは次のようになります。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        (headertags)
    </head>
    <body>
        <h1><?php the_title($post_id); ?></h1>
        <p><?php my_custom_template_body_tag(); ?></p>
    </body>
</html>

しかし、その内容をwp_mail()関数に返す方法はわかりません。私はfile_get_contents()を使用しようとしましたが、それはPHP生成されたコンテンツを単に無視します、そして私はheredoc構文を調べました。しかし、私はそれが非常に醜くて間違いが起こりやすいと思います。他に選択肢はありますか。私はこのような何かをすることができれば私は本当にそれが大好きです:

$content = parse_and_return_content_of('path/to/template/file', $arg);

ありがとうございました

5
Malibur

ob_get_contents()を使うべきです

    ob_start();
    include('template/email-header.php');
    printf(__('<p>A very special welcome to you, %1$s. Thank you for joining %2$s!</p>', 'cell-email'), $greetings, get_bloginfo('name'));
    printf(__('<p> Your password is <strong style="color:orange">%s</strong> <br> Please keep it secret and keep it safe! </p>', 'cell-email'), $plaintext_pass);
    printf(__('<p>We hope you enjoy your stay at %s. If you have any problems, questions, opinions, praise, comments, suggestions, please feel free to contact us at any time</p>', 'cell-email'), get_bloginfo('name'));
    include('template/email-footer.php');
    $message = ob_get_contents();
    ob_end_clean();
    wp_mail($user_email, $email_subject, $message);

そしてtemplate/email-header.phpでは、あなたが使用することができます

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta property="og:title" content="<?php echo $email_subject ?>" />
    <title><?php echo $email_subject ?></title>
</head>
<body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0" style="width: 100% !important; -webkit-text-size-adjust: none; margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; background-color: #FAFAFA;" bgcolor="#FAFAFA">
<!-- the rest of the html here -->
<?php // and php generated content if you prefer ?>
3
ifdion

あなたはもう少しマージフィールドのような何かをすることができました。このようにして、プレースホルダ付きの電子メールテンプレートを使用してhtmlとPHPを分離し、それらの文字列を置換することができます。次のようなものがあります。

_ html _

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        (headertags)
    </head>
    <body>
        <h1>[POST.TITLE]</h1>
        <p>[POST.CONTENT]</p>
    </body>
</html>

_ php _

$html_email_template_file = 'some/path/mytemplate-example.html';

// assign contents of file to $content var
$content = file_get_contents($html_email_template_file);

$content = str_replace('[POST.TITLE]', $post->post_title, $content);
$content = str_replace('[POST.CONTENT]', $post->post_excerpt, $content);

// send your email here ...
1
Aron