如何使用 Perl 的 Mail::Outlook 格式化邮件?
我想格式化使用 Mail::Outlook.For 发送的邮件,例如更改字体大小或使其粗体等。我该如何操作?
I'd like to format messages that I send using the Mail::Outlook.For e.g. change the font size or make it bold etc. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来 Mail::Outlook::Message 的
'message'
成员只是一个 MailItem 对象。如果您想接触,您只需操纵它即可。从我正在查看的文档中,您可以设置BodyFormat
和HTMLBody
属性。因此,假设
$outlook
是您的Mail::Outlook
实例。它可能可以做到这一点:It appears that the
'message'
member of a Mail::Outlook::Message is just a MailItem object. If you want to reach in, you could just manipulate it. From the doc I'm looking at, you would set theBodyFormat
andHTMLBody
properties.So say that
$outlook
is yourMail::Outlook
instance. It might work to do this: