如何在 Blackberry 中将 HTML 添加到电子邮件中?
如何在 Blackberry 中将 HTML 添加到电子邮件中?
我尝试过多部分电子邮件,但这似乎不起作用。我问如何从黑莓上运行的应用程序发送 HTML 格式的电子邮件,如果我的措辞太含糊,请让我知道如何重新表述我的问题
How do you add HTML into an email in Blackberry?
I've tried multipart emails, but that does not seem to work. I am asking how to send an HTML formatted email from an application running on a Blackberry, if I am wording too vaguely, please let me know how to rephrase my question
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所有 HTML 电子邮件的工作方式都相同 - HTML 位于电子邮件正文中,并且任何图像都必须具有完全限定的 URL (http://...)。
CSS 支持是有限的,必须在每个元素上定义内联语句 (
style=""
)(无样式表)。不支持背景图像。表格必须用于布局(虽然很糟糕,但却是事实)。All HTML emails work the same way - the HTML is in the email body and any images must have a fully-qualified url (http://...).
CSS support is limited and must be defined inline statements (
style=""
) on each element (no stylesheets). Background images are not supported. Tables must be used for layouts (awful but true).您正在谈论 HTML 邮件程序,它们很棘手并且取决于最终将在其中看到它们的客户端计算机。您的 HTML 应该完全基于表格布局,样式需要内联。下面是一个 HTML 邮件程序,几乎可以完美地在任何设备上正确显示,无论是 MAC、PC、iPad 还是 Blackberry。
http://www.dreamincode.net/iem/display.php?M=2016&C=f945ef50b90408df6b2eb3054df75e79&S=63&L=1&N=25
如果您查看源代码通过此页面,您将了解如何构建邮件程序。
要将邮件作为群发邮件列表发送,您需要电子邮件营销软件。
You are talking about the HTML mailers, which are tricky and depend on the client Machine, where they will be eventually seen. Your HTML should be fully table layout based, Styles need to be inline. Below is an HTML mailer that is like almost perfect to display correctly on any device, whether it is MAC or PC or iPad or Blackberry.
http://www.dreamincode.net/iem/display.php?M=2016&C=f945ef50b90408df6b2eb3054df75e79&S=63&L=1&N=25
If you view the source of this page, you would come to know how the mailers need to be build out.
To send the mailers as a mass mailing list you need an Email Marketing Software's.