在 VB.Net 中撰写要通过 Outlook 发送的邮件时,在电子邮件正文中使用 HTML 标记

发布于 2024-10-31 22:38:11 字数 476 浏览 2 评论 0原文

我正在使用 VB.Net 代码通过 Outlook 发送电子邮件。

创建消息正文的语法是: oMsg.Body="string here"

但是,我发送的消息更像是: oMsg.Body="Dear" & <数据库值> & “,你需要付钱”&

我想更改文本行的颜色,因此使用了 oMsg.HTMLBody,正如我在其他地方看到的,我们可以使用 HTML 标签来格式化文本。当我使用 标签时,它甚至无法识别它,但是当我使用

,它也立即识别并应用了标签。

我可能做错了什么?如何应用标签来包含数据库值?请告诉我。谢谢!

I am sending an email through Outlook using VB.Net code.

The syntax for creating the body of the message is: oMsg.Body="string here"

However, the message I am sending is more like: oMsg.Body="Dear" & <database value> & ", you need to pay up" & <database value>

I would like to change the color of the line of text and so used oMsg.HTMLBody, as I had seen elsewhere that we can use HTML tags to format the text. When I used the <font> tag, it didn't even recognise it, but when I used <br> and <p>, it immediately recognised and applied the tags as well.

What could I be doing wrong? How can I apply the tag to include the database values as well? Please let me know. Thanks!

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

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

发布评论

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

评论(1

你列表最软的妹 2024-11-07 22:38:11

已弃用。在标签上使用 style 属性来以不同的方式设置它们的样式。

<font> is deprecated. Use style attributes on your tags instead to style them different ways.

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