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?

已提問 2 年前檢視次數 711 次
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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南