Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
awscli /
examples /
ses /
Delete
Unzip
Name
Size
Permission
Date
Action
delete-identity.rst
529
B
-rw-r--r--
2017-04-04 16:39
get-identity-dkim-attributes.rst
1.13
KB
-rw-r--r--
2017-04-04 16:39
get-identity-notification-attributes.rst
1.34
KB
-rw-r--r--
2017-04-04 16:39
get-identity-verification-attributes.rst
997
B
-rw-r--r--
2017-04-04 16:39
get-send-quota.rst
1.23
KB
-rw-r--r--
2017-04-04 16:39
get-send-statistics.rst
1.16
KB
-rw-r--r--
2017-04-04 16:39
list-identities.rst
906
B
-rw-r--r--
2017-04-04 16:39
send-email.rst
2.25
KB
-rw-r--r--
2017-04-04 16:39
send-raw-email.rst
2
KB
-rw-r--r--
2017-04-04 16:39
set-identity-dkim-enabled.rst
498
B
-rw-r--r--
2017-04-04 16:39
set-identity-feedback-forwarding-enabled.rst
890
B
-rw-r--r--
2017-04-04 16:39
set-identity-notification-topic.rst
728
B
-rw-r--r--
2017-04-04 16:39
verify-domain-dkim.rst
820
B
-rw-r--r--
2017-04-04 16:39
verify-domain-identity.rst
630
B
-rw-r--r--
2017-04-04 16:39
verify-email-identity.rst
970
B
-rw-r--r--
2017-04-04 16:39
Save
Rename
**To send a raw email using Amazon SES** The following example uses the ``send-raw-email`` command to send an email with a TXT attachment:: aws ses send-raw-email --raw-message file://c:\temp\message.json Output:: { "MessageId": "EXAMPLEf3f73d99b-c63fb06f-d263-41f8-a0fb-d0dc67d56c07-000000" } The raw message is a JSON data structure saved in the message.json file. It contains the following:: { "Data": "From: sender@example.com\nTo: recipient@example.com\nSubject: Test email sent using the AWS CLI (contains an attachment)\nMIME-Version: 1.0\nContent-type: Multipart/Mixed; boundary=\"NextPart\"\n\n--NextPart\nContent-Type: text/plain\n\nThis is the message body.\n\n--NextPart\nContent-Type: text/plain;\nContent-Disposition: attachment; filename=\"attachment.txt\"\n\nThis is the text in the attachment.\n\n--NextPart--" } As you can see, "Data" is one long string that contains the entire raw email content in MIME format, including an attachment called attachment.txt. Replace sender@example.com and recipient@example.com with the addresses you want to use. Note that the sender's email address must be verified with Amazon SES. Until you are granted production access to Amazon SES, you must also verify the email address of the recipient unless the recipient is the Amazon SES mailbox simulator. For more information on verification, see `Verifying Email Addresses and Domains in Amazon SES`_ in the *Amazon Simple Email Service Developer Guide*. The Message ID in the output indicates that the call to send-raw-email was successful. If you don't receive the email, check your Junk box. For more information on sending raw email, see `Sending Raw Email Using the Amazon SES API`_ in the *Amazon Simple Email Service Developer Guide*. .. _`Sending Raw Email Using the Amazon SES API`: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html .. _`Verifying Email Addresses and Domains in Amazon SES`: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html