Sendgrid'in kendi kodlarını kullanıyorum:
$email = new \SendGrid\Mail\Mail();
$email->setFrom("mail", "Example User");
$email->setSubject("Sending with SendGrid is Fun");
$email->addTo("mail", "User");
$email->addContent("text/plain", "and easy to do anywhere, even with PHP");
$email->addContent(
"text/html", "and easy to do anywhere, even with PHP"
);
$sendgrid = new \SendGrid(getenv('key'));
try {
$response = $sendgrid->send($email);
print $response->statusCode() . "\n";
print_r($response->headers());
print $response->body() . "\n";
} catch (Exception $e) {
echo 'Caught exception: '. $e->getMessage() ."\n";
}
Localhost'ta çalıştığım için hatayı veriyor olabilir mi?