是否可以使用 Ruby 的 WIN32OLE 发送格式化的电子邮件,无论是 html 还是其他方式 - 我已经能够通过自动化发送纯文本电子邮件(如下所示),但希望能够添加一些格式。任何帮助将不胜感激!
require 'win32ole'
@outlook = WIN32OLE.new('Outlook.Application')
email = @outlook.CreateItem(0)
email.Subject = 'Test Subject'
email.Body = 'Test Body'
email.To = 'recipient@example.com'
email.Save
email.Send