← 返回命令列表

Linux command

aws-ses 命令

网络

复制后可按需替换文件名、目录或参数。

常用示例

Send an email

aws ses send-email --from [sender@example.com] --to [recipient@example.com] --subject "[Subject]" --text "[Body text]"

Verify an email identity

aws ses verify-email-identity --email-address [email@example.com]

List verified identities

aws ses list-identities

Get sending quota

aws ses get-send-quota

Get sending statistics

aws ses get-send-statistics

Create an email template

aws ses create-template --template file://[template.json]

Send a templated email

aws ses send-templated-email --source [sender@example.com] --destination ToAddresses=[recipient@example.com] --template [template-name] --template-data '{"name":"value"}'

说明

aws ses is the AWS CLI interface for Amazon Simple Email Service (SES), a cloud-based email sending service for transactional email, marketing messages, and high-volume email communications. SES provides email sending capabilities with features like deliverability tracking, bounce and complaint handling, email templates, and configuration sets for managing sending behavior.

FAQ

What is the aws-ses command used for?

aws ses is the AWS CLI interface for Amazon Simple Email Service (SES), a cloud-based email sending service for transactional email, marketing messages, and high-volume email communications. SES provides email sending capabilities with features like deliverability tracking, bounce and complaint handling, email templates, and configuration sets for managing sending behavior.

How do I run a basic aws-ses example?

Run `aws ses send-email --from [sender@example.com] --to [recipient@example.com] --subject "[Subject]" --text "[Body text]"` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

Where can I find more aws-ses examples?

This page includes 7 examples for aws-ses, plus related commands for nearby Linux tasks.