new-year-sender

command module
v0.0.0-...-8cbe05a Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 30, 2023 License: MIT Imports: 15 Imported by: 0

README

new-year-sender

The email sender for new year email.

Simple usage

Install new-year-sender,

$ go get github.com/macrat/new-year-sender

Make source file like this,

apikey: your-API-key-of-SendGrid

from: your name <[email protected]>

to:
  - name <[email protected]>

date: 2018-01-01 00:00  # the date to send email.

title: E-Mail subject

text: |
  contents of an email.

  this is test

html: |
  <p>contents of an <b>email</b>.</p>

  <p>this is test</p>

attach:
  - path/to/file.ext

And send it.

$ new-year-sender --source source-file.yml

Send many emails

You can send many emails with the simple source file. This behavior is like an object-based programming.

for example:

apikey: your-API-key-of-SendGrid

# common settings
from: your name <[email protected]>

date: 2018-01-01 00:00

title: hello

text: |
  hello!
  this is test e-mail!!

attach:
  - attached-file.png

# personal settings
mails:
  - title: hello alice  # override title
    to:
      - alice <[email protected]>

  - attach:   # append attach
      - attached-file2.png

    to:
      - [email protected]

  # more extend
  - date: 2018-01-01 10:00

    mails:
      - to:
          - [email protected]
          - [email protected]
        cc:
          - [email protected]

      - to:
        - eve <[email protected]>

This source will send 4 emails.

If you want test source, please use --test or --dryrun option. --test option will validate source and display errors if that exists. --dryrun option will execute --test and display parsed results. Won't send emails if enabled either option.

Print like this when given the above source file with --dryrun option.

$ new-year-sender --test < test.yml
title:  hello alice
from:  your name <[email protected]>
to: ["alice" <[email protected]>]
cc: []
bcc: []
date:  2018-01-01 00:00:00 +0900 JST
Attached: attached-file.png

hello!
this is test e-mail!!

==============================
title:  hello
from:  your name <[email protected]>
to: [<[email protected]>]
cc: []
bcc: []
date:  2018-01-01 00:00:00 +0900 JST
Attached: attached-file2.png, attached-file.png

hello!
this is test e-mail!!

==============================
title:  hello
from:  your name <[email protected]>
to: [<[email protected]>, <[email protected]>]
cc: [<[email protected]>]
bcc: []
date:  2018-01-01 10:00:00 +0900 JST
Attached: attached-file.png

hello!
this is test e-mail!!

==============================
title:  hello
from:  your name <[email protected]>
to: ["eve" <[email protected]>]
cc: []
bcc: []
date:  2018-01-01 10:00:00 +0900 JST
Attached: attached-file.png

hello!
this is test e-mail!!

Apply templates

Sender supports template for text and HTML body.

for example:

apikey: your-API-key-of-SendGrid

title: Template example

from: your name <[email protected]>

text_template: |
  Hello!

  {{.Text}}

  Best regards,

html_template: |
  <body style="background-color: #f0f0f0; color: #000;">
    <p>Hello!</p>
    {{.Html}}
    <p>Best regards,</p>
  </body>

mails:
  - to: [alice <[email protected]>]
    text:
      How are you alice?
    html:
      <p>How are you <b>alice</b>?</p>

  - to: [bob <[email protected]>]
    text:
      booooooooob
    html:
      <p style="font-size:500%">booooooob</p>

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL