内容管理通讯/电子杂志?

发布于 2024-11-05 05:32:36 字数 272 浏览 1 评论 0原文

客户询问是否可以为他们设计和开发一个电子杂志/新闻通讯模板,他们可以在没有任何编码知识的情况下自行管理。

任何人都知道我会怎么做,我在电子邮件营销方面没有太多经验。

另外,在开发 ezine 模板时如何使用 CSS?根据我的经验,水星消息、邮件黑猩猩等......都只接受基于表格的布局?

更新:

我将设计模板。模板将包含文本和图像,我需要一种方法让客户端能够编辑这些图像和文本,而无需破坏模板代码或不必进入模板代码。

这可以使用所见即所得编辑器来完成吗?

Client has asked is it possible to design and develop them an ezine/newsletter template that they can manage themselves without any coding knowledge.

Anyone know how I'd go about this, I don't have much experience with email marketing.

Also, how can I use CSS when developing an ezine template? From my experience mercury message, mail chimp etc... all only accept table based layouts?

Update:

I will be designing the template. The template will have text and images, I need a way for the client to be able to edit these images and text without breaking the template code or having to go into the template code.

Can this be done using a WYSIWYG editor?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

避讳 2024-11-12 05:32:36

为了让您的客户能够自己设计时事通讯,他们应该查看一些第三方邮件提供商具有的所见即所得编辑器,例如 MailChimpMadMimi

不过,我想向您指出 PostageApp,它有一个很棒的内置模板编辑器,可以自动内联HTML 和 CSS 并根据流行的客户端对其进行验证。

我是它的产品经理,所以我很乐意回答您对此的任何问题。

For your client to be able to design newsletters on their own, they should look at WYSIWYG editors that some of the third party mail providers have as a feature like MailChimp and MadMimi.

However, I would like to point you to PostageApp, which has a great built in template editor that automatically in-lines HTML and CSS and validates it against popular clients.

I'm the Product Manager for it, so I'm happy to answer any questions you may have about it.

酒绊 2024-11-12 05:32:36

持续联系是我认为没有任何技术技能的小型企业最常选择的电子邮件营销选择。

http://www.constantcontact.com/index.jsp

我不知道电子-杂志模板,但持续接触是制作电子通讯的主要内容。

至于将 CSS 与表格布局结合使用——没有理由不能。我经常看到人们做这样的事情:

<table>
   <tr class="coloredrow">
       <td>some stuff here</td>
       <td>more stuff</td>
   </tr>
   <tr>
      <td>some stuff here</td>
       <td>more stuff</td>
   </tr>
   <tr class="coloredrow">
    etc...

这不一定是最新的做事方式(我自己更喜欢使用 jQuery 来条带化表)但它确实有效。如果你想让它变得非常丑陋,你甚至可以在

<tr> 

标签内使用内联CSS,就像这样

<tr style="background-color:red">.

希望有帮助。

Constant Contact is the email marketing choice that I see being selected most often by small businesses that do not have any tech skills on board.

http://www.constantcontact.com/index.jsp

I don't know about e-zine templates but Constant Contact is a staple of doing e-newsletters.

As for using CSS with table layouts--there's no reason why you can't. I've often seen people do something like this:

<table>
   <tr class="coloredrow">
       <td>some stuff here</td>
       <td>more stuff</td>
   </tr>
   <tr>
      <td>some stuff here</td>
       <td>more stuff</td>
   </tr>
   <tr class="coloredrow">
    etc...

It's not necessarily the most up-to-date way of doing things (I prefer jQuery for striping tables myself) but it certainly works. if you wanted to get really ugly about it you could even use inline css right inside the

<tr> 

tag like this

<tr style="background-color:red">.

Hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文