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 Answer
2
Accepted Answer

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
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions