1POSTMAN() POSTMAN()
2
3
4
6 postman -
7
8 postman is a simple command line working with Amazon AWS, leveraging
9 the boto library.
10
12 $ postman -h
13 usage: postman [-h] [--version] [--verbose]
14
15 {show_stats,verify,send,show_quota,delete_verified,list_verified}
16 ...
17
18 send an email via Amazon SES
19
20 positional arguments:
21 {show_stats,verify,send,show_quota,delete_verified,list_verified}
22
23 optional arguments:
24 -h, --help show this help message and exit
25 --version
26 --verbose
27
29 poastman has 6 different commands, in line with the various API calls
30 available for Amazon SES.
31
32 verify
33 verifies an email for sending (and in the case of the sandbox environā
34 ment for receiving as well)
35
36 delete_verified
37 removes a verified email address from your account
38
39 list_verified
40 print out a list of all verified email addresses on your account
41
42 send
43 sends an email, the content of the email is a raw email piped in very
44 stdin, the only option is -f which takes a single email address that
45 the email is sent from, following by 1 or more arguments that are email
46 addresses that are the the destination for the email.
47
48 show_quota
49 print out the email quota and rate limits for you account
50
51 show_stats
52 print out the stats for the Amazon SES account
53
54
55
56
57 POSTMAN()