generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
40 lines (37 loc) · 961 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: 'Postmark Action'
description: 'Send emails using Postmark API with template support'
author: 'Ashwin Khode <[email protected]>'
branding:
icon: 'mail'
color: 'yellow'
inputs:
postmark-token:
description: 'Postmark API token'
required: true
to:
description: 'Recipient email address'
required: true
from:
description: 'Sender email address'
required: true
subject:
description: 'Email subject'
required: true
body:
description: 'Email body content (not required if using template)'
required: false
template-path:
description: 'Path to the HTML template file'
required: false
template-data:
description: 'JSON string containing template variables'
required: false
is-html:
description: 'Whether the body content is HTML'
required: true
outputs:
status:
description: 'Status of the email sending operation'
runs:
using: 'node20'
main: 'dist/index.js'