forked from hilarion5/send-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
40 lines (39 loc) · 945 Bytes
/
action.yml
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
37
38
39
40
name: 'Send E-Mail (SMTP)'
description: 'Sending Email via SMTP'
branding:
icon: 'mail'
color: 'orange'
inputs:
smtp-server:
description: 'The smtp server to use'
required: true
smtp-port:
description: 'The smtp port to use'
required: false
default: '465'
smtp-secure:
description: 'If the smtp server uses ssl'
required: false
default: 'true'
from-email:
description: 'The sender of the mail'
required: true
to-email:
description: 'The recipients of the mail seperated by comma'
required: true
username:
description: 'The username of the mail account'
required: true
password:
description: 'The password of the mail account'
required: true
subject:
description: 'The subject of the mail'
required: true
body:
description: 'The body of the mail'
html:
description: 'HTML Content of the mail'
runs:
using: 'node20'
main: 'dist/index.js'