subscribe2 で配信するメールにアイキャッチ画像を掲載したい
-
新着記事が投稿された時のお知らせメール配信用として
subscribe2を利用しています。お知らせメールに記事のタイトルや寄稿者を表示することはできたのですが、
ここに記事に設定しているアイキャッチを載せることができないものでしょうか?いろいろ調べてみたのですが、それらしい回答が見当たらなかったので、
アドバイスいただけると助かります。ちなみに、
subscribe2の設定にあるメールテンプレートの関連ファイルと思われる
[subscribe2\classes]内の[class-s2-core.php]ファイルの199行目以降に以下の部分を見つけました。/* ===== mail handling ===== */ /** Performs string substitutions for subscribe2 mail tags */ function substitute($string = '') { if ( '' == $string ) { return; } $string = str_replace("{BLOGNAME}", html_entity_decode(get_option('blogname'), ENT_QUOTES), $string); $string = str_replace("{BLOGLINK}", get_option('home'), $string); $string = str_replace("{TITLE}", stripslashes($this->post_title), $string); $link = "<a href=\"" . $this->get_tracking_link($this->permalink) . "\">" . $this->get_tracking_link($this->permalink) . "</a>"; $string = str_replace("{PERMALINK}", $link, $string); if ( strstr($string, "{TINYLINK}") ) { $tinylink = file_get_contents('http://tinyurl.com/api-create.php?url=' . urlencode($this->get_tracking_link($this->permalink))); if ( $tinylink !== 'Error' && $tinylink != false ) { $tlink = "<a href=\"" . $tinylink . "\">" . $tinylink . "</a>"; $string = str_replace("{TINYLINK}", $tlink, $string); } else { $string = str_replace("{TINYLINK}", $link, $string); } } $string = str_replace("{DATE}", $this->post_date, $string); $string = str_replace("{TIME}", $this->post_time, $string); $string = str_replace("{MYNAME}", stripslashes($this->myname), $string); $string = str_replace("{EMAIL}", $this->myemail, $string); $string = str_replace("{AUTHORNAME}", stripslashes($this->authorname), $string); $string = str_replace("{CATS}", $this->post_cat_names, $string); $string = str_replace("{TAGS}", $this->post_tag_names, $string); $string = str_replace("{COUNT}", $this->post_count, $string);
ここに
$string = str_replace("{THUMBNAIL}", $this->post_thumbnails, $string);
と書き加えてみました。これでメールテンプレートに{THUMBNAIL}と書いたら読み込んでくれるかな、と
期待したのですが、無理でした。上記の方法であと一歩、であれば修正箇所を教えてください。
全く別の方法でいいアイデアがあればアドバイスいただけると助かります。長文になりましたが、どうぞよろしくお願いいたします。
1件の返信を表示中 - 1 - 1件目 (全1件中)
1件の返信を表示中 - 1 - 1件目 (全1件中)
- トピック「subscribe2 で配信するメールにアイキャッチ画像を掲載したい」には新たに返信することはできません。