You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Hello Amazon SES v2 API](sesv2_hello.py#L18) (`ListEmailIdentities`)
40
+
41
+
37
42
### Single actions
38
43
39
44
Code excerpts that show you how to call individual service functions.
40
45
41
46
-[CreateContact](newsletter.py#L155)
42
47
-[CreateContactList](newsletter.py#L105)
43
-
-[CreateEmailIdentity](newsletter.py#L92)
44
-
-[CreateEmailTemplate](newsletter.py#L118)
48
+
-[CreateEmailIdentity](sesv2_wrapper.py#L73)
49
+
-[CreateEmailTemplate](sesv2_wrapper.py#L109)
45
50
-[DeleteContactList](newsletter.py#L258)
46
-
-[DeleteEmailIdentity](newsletter.py#L286)
47
-
-[DeleteEmailTemplate](newsletter.py#L271)
51
+
-[DeleteEmailIdentity](sesv2_wrapper.py#L321)
52
+
-[DeleteEmailTemplate](sesv2_wrapper.py#L291)
53
+
-[GetEmailIdentity](sesv2_wrapper.py#L42)
48
54
-[ListContacts](newsletter.py#L198)
49
55
-[SendEmail](newsletter.py#L164)
50
56
@@ -53,8 +59,14 @@ Code excerpts that show you how to call individual service functions.
53
59
Code examples that show you how to accomplish a specific task by calling multiple
54
60
functions within the same service.
55
61
62
+
-[Email Attachments Scenario](sesv2_wrapper.py)
56
63
-[Newsletter scenario](newsletter.py)
57
64
65
+
### Actions
66
+
_Actions_ are code excerpts from larger programs and must be run in context. While actions show you how to call individual service functions, you can see actions in context in their related scenarios.
67
+
68
+
-[SendBulkEmail](sesv2_wrapper.py#L227)
69
+
58
70
59
71
<!--custom.examples.start-->
60
72
<!--custom.examples.end-->
@@ -74,7 +86,38 @@ To run the Newsletter example, copy the files from workflows/sesv2_weekly_mailer
74
86
75
87
<!--custom.instructions.end-->
76
88
89
+
#### Hello Amazon SES v2 API
90
+
91
+
This example shows you how to get started using Amazon SES v2 API.
92
+
93
+
```
94
+
python sesv2_hello.py
95
+
```
96
+
97
+
98
+
#### Email Attachments Scenario
99
+
100
+
This example shows you how to send emails with attachments using Amazon SES v2 API.
0 commit comments