如何在Sendgrid中添加邮件头?

4
我正在尝试使用php和sendgrid在outlook上发送日历邀请。所以我需要创建一个ics文件,这不是问题。问题在于我需要设置头部信息。Gmail将ics文件识别为日历邀请,但outlook没有。这是我想到的全部代码,但我在这方面一无所获。请帮忙。我已经搜索了每个博客,想找出如何在sendgrid中添加content-type和content-disposition等头部信息,但没有任何结果。
<html>
<head>
    <title>PHP Test</title>
</head>
<body>

<?php

include("/Users/aaa/Downloads/sendgrid-php/sendgrid-php.php");
include('/Users/aaa/Downloads//smtpapi-php/smtpapi-php.php');


$sendgrid = new SendGrid("uname", "pass");
$email    = new SendGrid\Email();

$ical = "
Content-Type: text/calendar;method=request
MIME-Version: 1.0
BEGIN:VCALENDAR
METHOD:REQUEST
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
BEGIN:VEVENT
UID:" . md5(uniqid(mt_rand(), true)) . "@time.co
DTSTAMP:" . gmdate('Ymd').'T'. gmdate('His') . "Z
DTSTART:20150429T170000Z
DTEND:20150429T035959Z
SUMMARY:New event has been added
END:VEVENT
END:VCALENDAR";

$filename = "invite.ics";
$file = fopen($filename, 'w');
fwrite($file, $ical);
fclose($file);


$email->addTo("aaa@outlook.com")
    ->setFrom("aaa@example.com")
    ->setSubject("Subject")
    ->setAttachment($filename)
    ->addHeader('Content-Type', 'multipart/alternative')
    ->addHeader('Content-Disposition', 'inline');

$sendgrid->send($email);

var_dump($sendgrid);

try {
    $sendgrid->send($email);
} catch(\SendGrid\Exception $e) {
    echo $e->getCode();
    foreach($e->getErrors() as $er) {
        echo $er;
    }
}

?>

</body>
</html>
1个回答

3
很遗憾,当前网络端点存在限制。针对此用例,您需要使用SMTP而不是HTTP发送。如果您正在使用它们,请使用smtpapi-php库构建您的X-SMTPAPI头。然后使用您选择的库构建SMTP消息,添加自定义标头(包括必要的X-SMTPAPI),并将其发送。 使用Swift Mailer作为SMTP传输的示例
use Smtpapi\Header;

$transport = \Swift_SmtpTransport::newInstance('smtp.sendgrid.net', 587);
$transport->setUsername('sendgrid_username');
$transport->setPassword('sendgrid_password');

$mailer = \Swift_Mailer::newInstance($transport);

$message = new \Swift_Message();
$message->setTos(array('bar@blurdybloop.com'));
$message->setFrom('foo@blurdybloop.com');
$message->setSubject('Hello');
$message->setBody('%how% are you doing?');

$header = new Header();
$header->addSubstitution('%how%', array('Owl'));

$message_headers = $message->getHeaders();
$message_headers->addTextHeader(HEADER::NAME, $header->jsonString());

try {
    $response = $mailer->send($message);
    print_r($response);
} catch(\Swift_TransportException $e) {
    print_r('Bad username / password');
}

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接