-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
39 lines (38 loc) · 976 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
name: 'Send Email'
description: 'send email'
author: 'Jiulong Hu'
inputs:
host:
description: 'the hostname or IP address to connect to'
required: true
port:
description: 'the port to connect to (defaults to 587 if is secure is false or 465 if true)'
required: false
secure:
description: 'if true the connection will use TLS when connecting to server'
default: false
required: false
username:
description: 'username'
required: true
password:
description: 'password'
required: true
subject:
description: 'the subject of the email'
required: true
text:
description: 'the plaintext version of the message'
required: true
html:
description: 'the html version of the message'
required: false
from:
description: 'the email address of the sender'
required: false
to:
description: 'the email address of the receiver'
required: true
runs:
using: 'node12'
main: 'dist/index.js'