Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
joomla2.5のHTMLエディターでサイトのURLを取得することは可能ですか。メール本文の画像URLを指定する必要があります。
コード
<img src="<?php JURI::base()?>/templates/dayo/images/sign.png" width="200" />
前もって感謝します
メール本文の文字列置換機能が使えると思います。
エディター内にコードを配置する必要があり[image]ます。投稿の値を取得する際に、文字列[image]を画像の URL に置き換える必要があります。
[image]
文字列置換のコード例:
$mailbody = "mail body value [image] and description"; $imageurl = ''; $body = str_replace("[image]", $imageurl, $mailbody);