私の index.php ファイルの上部には、次のものがあります。
require('sendgrid-php/SendGrid_loader.php');
そして一番下で、このコードを使用してメールを送信します。
<?php
if(isset($_POST['submit']))
{
$sendgrid = new SendGrid('app11445063@heroku.com', 'password');
$mail = new SendGrid\Mail();
$mail->
addTo('email@gmail.com')->
setFrom('app11445063@heroku.com')->
setSubject('Subject goes here')->
setText('Hello World!')->
setHtml('<strong>Hello World!</strong>');
$sendgrid->
smtp->
send($mail);
}
?>
メールを送信するためのコードを取得できません。SendGrid と Heroku から適切なアカウントを取得しています。必要なファイルは私のディレクトリにあります。必要なファイルへのパスが間違っていますか?