私はこのSDK私のアプリケーション内の電子メール配信に使用されている配信される。メールをスパム
私はhotmailの自分のメールアドレスにメールを送信しようとしましたが、SPAMに配信されました。
<?php
// If you are using Composer
require 'vendor/autoload.php';
$from = new SendGrid\Email(null, "[email protected]");
$subject = "Hello World from the SendGrid PHP Library";
$to = new SendGrid\Email(null, "[email protected]");
$content = new SendGrid\Content("text/plain", "some text here");
$mail = new SendGrid\Mail($from, $subject, $to, $content);
$apiKey = getenv('SENDGRID_API_KEY');
$sg = new \SendGrid($apiKey);
$response = $sg->client->mail()->send()->post($mail);
echo $response->statusCode();
echo $response->headers();
echo $response->body();
しかし、私は「[email protected]」それが受信トレイに配信を受ける可能性がために送信者のアドレスを変更した場合。なぜこうなった?
ありがとうございました。