-3
私はsendGridを使用して電子メールを送信しています。しかし私の電子メールは迷惑メールフォルダに入ります。 これは私がこれを使用しているコードです。スパムフォルダから電子メールを移動できないようにするPHP
<?php
$apiKey = "xxxxx.xxxxxx.xxxxxx";
require("sendgrid-php/sendgrid-php.php");
$from = new SendGrid\Email("Example User", "[email protected]");
$subject = "Sending with SendGrid is Fun";
$to = new SendGrid\Email("Example User", "[email protected]");
$content = new SendGrid\Content("text/plain", "and easy to do anywhere, even with PHP");
$mail = new SendGrid\Mail($from, $subject, $to, $content);
$sg = new \SendGrid($apiKey);
$response = $sg->client->mail()->send()->post($mail);
echo $response->statusCode();
var_dump($response->headers());
var_dump($response->body());
なぜこれらの電子メールが迷惑メールフォルダに移動するのはなぜですか?
私はオリジナルの「こんにちは、\ nは私たちのアプリケーションに登録するためのおかげでテキストを変更する\ nはあなたがそうする7日を持っているか、あなたがリストをオフにぶつけます。無料のプレミアムアカウントの1つに勝つチャンスとチャンスを失います」「しかし、まだ迷惑メールフォルダにあります。両方の電子メールが実際に存在しています –
私はそれがこのテキストに関するものではないと思いますか? –