电子邮件模板ColdFusion9

时间:2012-03-09 20:35:48

标签: html email coldfusion html-email coldfusion-9

我的电子邮件设置存在一些问题,希望此处有人遇到过类似的问题。

我开始使用CF9。我有一个电子邮件模板,我用它来发送包含来自数据库的动态内容的不同电子邮件。

电子邮件将以HTML电子邮件形式发送,我将其用作我的标题:

<!-- // Begin Module: Standard Header Image \\ -->
<img src="http://www.example.com/cf_modules/autoresponders/example/sf_email_head.jpg" 
style="border:0;height:150px;line-height:100%;outline:none;text-decoration:none;width:600px;" 
id="headerImage campaign-icon" mc:label="header_image" mc:edit="header_image" mc:allowdesigner="" mc:allowtext="" alt="Image" />
<!-- // End Module: Standard Header Image \\ -->

我的问题是,有时图像没有显示,当我检查代码时,图像的链接就像

src="../../autoresponders/example/sf_email_head.jpg"

任何人都知道为什么会发生这种情况,如果我的编码中出现错误,为什么它不会出现在所有发送的电子邮件中?

另外,我忘了提到我正在为用户提供使用TinyMCE编辑电子邮件的选项,当我在论坛上阅读时,有时这个编辑器会将URL转换为链接。 我正等着看我的修复工作是否正常。

1 个答案:

答案 0 :(得分:3)

TinyMCE弄乱了我的网址

我通过添加

修复了它
tinyMCE.init({ 
        // General options 
        mode : "textareas", 
        elements : "htmleditor",
        theme : "advanced", 
        convert_urls : false