sendGrid 设置 headers/content 类型
sendGrid set headers/content type
我希望使用 sendGrid 创建 outlook 会议请求。
我需要能够将内容类型 (header) 设置为特定内容,但是有人知道我该怎么做吗?我想我要使用 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'
));
非常感谢
不幸的是,使用 SendGrid Web API 还无法更改内容类型。
In Web API, there's no way to force the content-type. In SMTP however, we'll respect whatever you set it to.
参考:this SendGrid support engineer answer
编辑:
答案是2岁。您可能会在 https://community.sendgrid.com/sendgrid
上再次提问
我希望使用 sendGrid 创建 outlook 会议请求。
我需要能够将内容类型 (header) 设置为特定内容,但是有人知道我该怎么做吗?我想我要使用 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'
));
非常感谢
不幸的是,使用 SendGrid Web API 还无法更改内容类型。
In Web API, there's no way to force the content-type. In SMTP however, we'll respect whatever you set it to.
参考:this SendGrid support engineer answer
编辑:
答案是2岁。您可能会在 https://community.sendgrid.com/sendgrid
上再次提问