我正在尝试将带有 Viewpoint Ruby Gem 的消息发送到 EWS 端点。我只能以纯文本格式发送消息。我怎样才能以html格式发送它?
这是代码:
Viewpoint::EWS::EWS.endpoint=Conf.application.email.ews.endpoint
Viewpoint::EWS::EWS.set_auth(Conf.application.email.ews.username,Conf.application.email.ews.password)
Viewpoint::EWS::Message.send(options[:subject],msg_str,to_addresses)
我看到有一个 text_only “实例”方法,但无法初始化消息对象的实例以使用它。