在 VB.Net 中撰写要通过 Outlook 发送的邮件时,在电子邮件正文中使用 HTML 标记
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已弃用。在标签上使用
style
属性来以不同的方式设置它们的样式。<font>
is deprecated. Usestyle
attributes on your tags instead to style them different ways.