使用 PHP 透過 Amazon SES 服務寄送電子郵件

建立專案

建立專案。

1
2
mkdir aws-ses-php-example
cd aws-ses-php-example

安裝依賴套件。

1
composer require aws/aws-sdk-php

實作

建立 index.php 檔。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php

require './vendor/autoload.php';

use Aws\Sdk;
use Aws\Exception\AwsException;

$sharedConfig = [
'region' => 'ap-northeast-1',
];

$sdk = new Sdk($sharedConfig);

$ses = $sdk->createSes();

$sender_email = 'user@example.com';

$recipient_emails = ['memochou1993@hotmail.com'];

$subject = 'Amazon SES test (AWS SDK for PHP)';
$plaintext_body = 'This email was sent with Amazon SES using the AWS SDK for PHP.' ;
$html_body = '<h1>AWS Amazon Simple Email Service Test Email</h1>'.
'<p>This email was sent with <a href="https://aws.amazon.com/ses/">'.
'Amazon SES</a> using the <a href="https://aws.amazon.com/sdk-for-php/">'.
'AWS SDK for PHP</a>.</p>';
$char_set = 'UTF-8';

try {
$result = $ses->sendEmail([
'Destination' => [
'ToAddresses' => $recipient_emails,
],
'ReplyToAddresses' => [$sender_email],
'Source' => $sender_email,
'Message' => [
'Body' => [
'Html' => [
'Charset' => $char_set,
'Data' => $html_body,
],
'Text' => [
'Charset' => $char_set,
'Data' => $plaintext_body,
],
],
'Subject' => [
'Charset' => $char_set,
'Data' => $subject,
],
],
]);
$messageId = $result['MessageId'];
echo("Email sent! Message ID: $messageId"."\n");
} catch (AwsException $e) {
// output error message if fails
echo $e->getMessage();
echo("The email was not sent. Error message: ".$e->getAwsErrorMessage()."\n");
echo "\n";
}

執行程式。

1
aws-vault exec your-profile -- php index.php

程式碼