Sendgrid错误400错误请求

时间:2017-03-11 19:38:36

标签: php attachment sendgrid bad-request

尝试通过SendGrid发送电子邮件时收到此错误消息:

400 { "errors": [ { "message": "Bad Request", "field": null, "help": null } ] } array(14) { [0]=> string(25) "HTTP/1.1 400 Bad Request " [1]=> string(14) "Server: nginx " [2]=> string(36) "Date: Sat, 11 Mar 2017 19:20:44 GMT " [3]=> string(31) "Content-Type: application/json " [4]=> string(19) "Content-Length: 63 " [5]=> string(23) "Connection: keep-alive " [6]=> string(22) "X-Frame-Options: DENY " [7]=> string(58) "Access-Control-Allow-Origin: https://sendgrid.api-docs.io " [8]=> string(35) "Access-Control-Allow-Methods: POST " [9]=> string(87) "Access-Control-Allow-Headers: Authorization, Content-Type, On-behalf-of, x-sg-elas-acl " [10]=> string(28) "Access-Control-Max-Age: 600 " [11]=> string(75) "X-No-CORS-Reason: https://sendgrid.com/docs/Classroom/Basics/API/cors.html " [12]=> string(1) " " [13]=> string(0) "" }

这是我的代码:

<?php

// If you are using Composer
require 'vendor/autoload.php';

use SendGrid\Mail;

$apiKey = 'mykey';
$sg = new \SendGrid($apiKey);
$email = new SendGrid\Email("Me", "mail@gmail.com");

$mail = new SendGrid\Mail();
$mail->setFrom($email);
$mail->setSubject("Attachment Test");
$p = new \SendGrid\Personalization();
$p->addTo($email);
$c = new \SendGrid\Content("text/plain", "Hi");
$mail->addPersonalization($p);
$mail->addContent($c);

$att1 = new \SendGrid\Attachment();
$att1->setContent( file_get_contents("favicon.ico") );
$att1->setType("text/plain");
$att1->setFilename("1.txt");
$att1->setDisposition("attachment");
$mail->addAttachment( $att1 );

$response = $sg->client->mail()->send()->post($mail);

echo $response->statusCode() . "\n";
echo json_encode( json_decode($response->body()), JSON_PRETTY_PRINT) . "\n";
var_dump($response->headers());
?>

不确定它是否与附件有关。我设法使用不同的代码发送电子邮件,但我尝试实现附件,因此这是新代码。我不太了解php,所以我很遗憾这个错误意味着什么。

1 个答案:

答案 0 :(得分:2)

您获得的错误是由于附件造成的。

文件的内容必须为base64编码。否则,它会使JSON格式错误,因为您将随机字节引入请求主体。

您可以在sendgrid-php的邮件助手的完整示例中看到,base64字符串被设置为附件的内容。 https://github.com/sendgrid/sendgrid-php/blob/master/examples/helpers/mail/example.php#L83

正如您在Attachment类中看到的那样,内容只是设置,并在序列化类时将序列化为JSON对象中的字符串: https://github.com/sendgrid/sendgrid-php/blob/master/lib/helpers/mail/Mail.php#L670

您只需使用此功能:http://php.net/manual/en/function.base64-encode.php

更改行:

$att1->setContent( file_get_contents("favicon.ico") );

要:

$att1->setContent( base64_encode( file_get_contents("favicon.ico") ) );

v3 Mail Send文档位于:https://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/index.html

如果向下滚动到“附件”对象并展开“内容”字段,它会显示对它的要求,主要是:The Base64 encoded content of the attachment.

相关问题