在PHP类中使用Amazon SES(Simple Email Service),可以通过以下步骤实现:
composer require aws/aws-sdk-php
require 'vendor/autoload.php';
use Aws\Ses\SesClient;
$client = new SesClient([
'version' => 'latest',
'region' => 'us-west-2', // 替换为你的区域
'credentials' => [
'key' => 'YOUR_ACCESS_KEY',
'secret' => 'YOUR_SECRET_KEY',
],
]);
$result = $client->sendEmail([
'Source' => 'sender@example.com', // 发件人邮箱
'Destination' => [
'ToAddresses' => ['recipient@example.com'], // 收件人邮箱
],
'Message' => [
'Subject' => [
'Data' => 'Hello from Amazon SES', // 邮件主题
'Charset' => 'UTF-8',
],
'Body' => [
'Text' => [
'Data' => 'This is the message body in text format.', // 邮件正文
'Charset' => 'UTF-8',
],
],
],
]);
以上是一个简单的示例,你可以根据需要调用其他Amazon SES的方法,如发送HTML格式的邮件、发送附件等。
推荐的腾讯云相关产品:腾讯云邮件推送(https://cloud.tencent.com/product/ses)
请注意,本答案中没有提及亚马逊AWS、Azure、阿里云、华为云、天翼云、GoDaddy、Namecheap、Google等流行的云计算品牌商。
领取专属 10元无门槛券
手把手带您无忧上云