Skip to content

gyto/mailgun-template-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Mailgun Template Action

Mailgun Template creation and version management

Inputs

Key Required Description
html-file Yes Path to file containing the HTML email
mailgun-api-key Yes Mailgun Api Key
mailgun-domain Yes Mailgun domain is used for templates
mailgun-template Yes Mailgun template name

Example usage

- name: "Create password reset template"
  uses: gyto/mailgun-template-action@v2
  with:
    html-file: './build/register.html'
    mailgun-api-key: ${{ secrets.MAILGUN_KEY }}
    mailgun-domain: "mydomain.fansy.com",
    mailgun-template: "register-template"