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.
是否可以在joomla 2.5的 HTML 编辑器上获取站点 URL 。我需要为电子邮件正文提供图像 URL。
代码
<img src="<?php JURI::base()?>/templates/dayo/images/sign.png" width="200" />
提前致谢
我认为您可以在电子邮件正文中使用字符串替换功能。
在编辑器中,您必须放置一个代码[image]。在获取 Post 值时,您必须将字符串替换[image]为图像 url。
[image]
字符串替换的示例代码:
$mailbody = "mail body value [image] and description"; $imageurl = ''; $body = str_replace("[image]", $imageurl, $mailbody);