-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
34 lines (34 loc) · 1.08 KB
/
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
name: 'Mailgun Action'
author: 'Vineet Choudhary'
description: 'Github action to send a mail using the Mailgun API'
branding:
icon: 'mail'
color: 'red'
inputs:
api-key:
description: 'Mailgun API Key'
required: true
domain:
description: 'Your Domain Name'
required: true
to:
description: 'Email address of the recipient(s). Example: [email protected]. You can use commas to separate multiple recipients.'
required: true
cc:
description: 'Email address to recieve carbon copies. Example: [email protected]. You can use commas to separate multiple recipients.'
required: false
from:
description: 'The email that will be shown as sender. Default will be hello@+your domain name. Like - [email protected]'
required: false
subject:
description: 'Email subject.'
required: false
body:
description: 'Body of the email (HTML Supported).'
required: false
outputs:
response:
description: 'Response from Mailgun.'
runs:
using: 'node12'
main: 'dist/index.js'