我已经设置了以下内容:
error_reporting(E_ALL | E_NOTICE);
ini_set('display_errors', '1');
$file = date('YmdHis');
$fp = fopen('/var/www/mydir/files/'.$file.'.csv', 'w');
$url = 'http://sendgrid.com/';
$user = 'myuser';
$pass = 'mypass';
$to_emails = array(
'to' => array(
'1@example.com','2@example.com','3@example.com'
),
'category' => 'Test'
);
$fileName = $file;
$filePath = dirname(__FILE__);
$params = array(
'api_user' => $user,
'api_key' => $pass,
'x-smtpapi' => json_encode($to_emails),
//'to' => 'example@example.com',
'subject' => 'Test email',
'html' => '<p>Testing sendgrid mail</p>',
'text' => 'sent',
'from' => 'me@example.com',
'files['.$file.'.csv]' => '@'.$filePath.'/files/'.$fileName.'.csv'
);
print_r($params);
$request = $url.'api/mail.send.json';
// Generate curl request
$session = curl_init($request);
// Tell curl to use HTTP POST
curl_setopt ($session, CURLOPT_POST, true);
// Tell curl that this is the body of the POST
curl_setopt ($session, CURLOPT_POSTFIELDS, $params);
// Tell curl not to return headers, but do return the response
curl_setopt($session, CURLOPT_HEADER, false);
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
// obtain response
$response = curl_exec($session);
curl_close($session);
print_r($response);
//unlink('./files/'.$file.'.csv');
mysql_close($connect);
问题是它没有发送给$to_emails
阵列中的收件人,并输出&#34;丢失目标电子邮件&#39;。它确实输出了我传入的电子邮件数组,但它仍然在寻找&#34; to&#34;数组中的值 - 我想知道为什么以及如何解决?我尽可能密切关注Sendgrid文档 - https://sendgrid.com/docs/Code_Examples/php.html。
如果我取消注意&#39;到&#39;它将电子邮件发送到example@example.com就好了。
答案 0 :(得分:5)
即使使用to
,目前也始终需要{em}参数<{1}}。我们建议将其设置为SMTPAPI to
地址。如果存在from
,API将忽略常规SMTPAPI to
参数。
您链接的示例显示了to
和to
个参数以及状态
...电子邮件将发送到example1@sendgrid.com和example2@sendgrid.com。正常地址example3@sendgrid.com将不会收到电子邮件。