AWS SES PHP SDK Problem

0

I used the example SES code given to send an SES email through PHP by Amazon (https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-using-sdk-php.html). Using PHP and the SES example in my application, the php file works perfectly fine when I call it through "php sendpass.php" in the console (email sends and console gets confirmation). But when I open that same page in a browser, the line "$result1 = $SesClient->sendEmail([]);" causes a "500 internal server error" and fails to execute the code. Even removing the meat from the function causes this problem, I've no where to turn for information on this because it seems like no one else is having this problem, is it a problem with the SDK?

  • I'm guessing this is an AWS credential issue but that is just a guess without a proper error message. Check your webserver's log file for a better error message?

1回答
2
承認された回答

When you run it locally, you have a different environment than when it runs via your web browser and your web server. Make sure you have your AWS credentials properly available to your script. You also should be able to look in your server error logs to see details of what's causing the error. Finally, you can surround the call to sendEmail([...]) with a try { sendEmail([...]); } catch (Exception $e) { echo "<pre>"; print_r($e); echo "</pre>"; } to see if that catches the error and displays what's going on.

For our purposes, we have the AWS credentials in a text file on the server in a non-public path that the script can access and then we use the CredentialProvider to ... provide the credentials. ;)

use Aws\Credentials\CredentialProvider;
use Aws\Ses\SesClient;

$provider = CredentialProvider::ini('default', '/path/to/credentials.file');
$provider = CredentialProvider::memoize($provider);

$sesClient = SesClient::factory([
  'region' => 'us-east-1',
  'version' => 'latest',
  'credentials' => $provider,
]);
Purdy
回答済み 2年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ