2016-07-07 6 views
1

GithubのSendGridのPHPライブラリを使用してSendGrid経由でメールを送信するためにスクリプトに含める必要があるsendgrid-php.phpファイルはどこですか?SendGridのPHPライブラリのsendgrid-php.phpファイルはどこですか?

私はSendGridのPHPライブラリをhttps://github.com/sendgrid/sendgrid-phpからダウンロードしました。私はsendgrid-php.phpをスクリプトに含めたいと思っています。私は作曲家を使用していません。私は私のスクリプトを実行すると、私はエラーを取得する

require("../lib/sendgrid-2016/sendgrid-php.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('MY API KEY'); 
$sg = new \SendGrid($apiKey); 

$response = $sg->client->mail()->send()->post($mail); 
echo $response->statusCode(); 
echo $response->headers(); 
echo $response->body(); 

マイ含まがどのように見える

のGithub上のzipファイルに含まれるファイルを見てみると

Fatal error: require(): Failed opening required '../lib/sendgrid-2016/sendgrid-php.php'

、私も表示されませんファイル: file list from github

+0

ダウンロードしたディレクトリはどこにでも置くことができます。それは間違いなくそこにある。 LICENSE.txtおよびREADME.mdと同じレベル –

答えて

0

readmeに記載されているパッケージ化されたzipではなく、repo .zip(githubによって生成された)をダウンロードしたようです。

関連する問題