我希望使用sendGrid来创建Outlook会议请求。
我需要能够将内容类型(标题)设置为特定的内容,但有人知道我该怎么做吗?我认为我要使用x-smtpapi,同时接受json字符串。
这是我现在拥有的。
$json_string = array(
'Content-Type' => array(
'text/calendar; Content-Disposition: inline; charset=utf-8;\r\n',
'text/plain;charset=\"utf-8\"\r\n'
));
非常感谢
答案 0 :(得分:3)
不幸的是,使用SendGrid Web API还无法更改内容类型。
在Web API中,无法强制使用内容类型。但是,在SMTP中,我们会尊重您设置的内容。
参考:this SendGrid support engineer answer
修改强>
答案是2岁。你可能会在https://community.sendgrid.com/sendgrid
上再次提出更好的运气