generated from dsfx3d/generator-ts-workspace
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yaml
36 lines (33 loc) · 799 Bytes
/
action.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Action to send email via AWS SES without using SMTP credentials
description: Send Email via AWS SES
inputs:
bcc:
description: 'Email address of the BCC recipient'
required: false
body:
description: 'Body of the email'
required: false
body_html:
description: 'Body of the email in HTML format'
required: false
cc:
description: 'Email address of the CC recipient'
required: false
from:
description: 'Email address of the sender'
required: true
reply_to:
description: 'Email address to reply to'
required: false
subject:
description: 'Subject of the email'
required: true
to:
description: 'Email address of the recipient'
required: true
runs:
using: node16
main: index.js
branding:
color: blue
icon: mail