emailer/README.md

48 lines
1.9 KiB
Markdown
Raw Normal View History

2021-12-29 03:02:04 +00:00
# Emailer
## Resource
```json
{
2021-12-29 03:20:31 +00:00
"From":"sender email",
"TO": ["array of receiver emails"],
"Title": "email subject",
2021-12-29 03:02:04 +00:00
"Body": {
"App": {
2021-12-29 03:20:31 +00:00
"Name":"site name (optional)",
"Link":"site link (optional)",
"Logo":"site logo (precedence over site name) (optional)",
"Copyright":"site copyright string (default to site name) (optional)",
"TroubleText":"help string for button link (optional)",
"Theme": "email back groud color (default #F2F4F6) (optional)",
"TitleColor": "email site name color (default #2F3133) (optional)",
"FooterColor": "email copyright color (default #AEAEAE) (optional)"
2021-12-29 03:02:04 +00:00
},
2021-12-29 03:20:31 +00:00
"Intros": ["begining lines (optional)"],
"Content": "markdown content (optional)",
"Outros": ["closing lines (optional)"],
2021-12-29 03:02:04 +00:00
"Actions": [
{
2021-12-29 03:20:31 +00:00
"Instructions": "text before action (optional)",
"InviteCode": "invitation code, only one of `Button`/`InviteCode` should exist (optional)",
2021-12-29 03:02:04 +00:00
"Button": {
2021-12-29 03:20:31 +00:00
"Text": "Button Text, only one of `Button`/`InviteCode` should exist (optional)",
"Link": "Button link url (optional)",
"Color": "Button color (default #3869D4) (optional)",
"TextColor": "Button text (default #ffffff) (optional)"
2021-12-29 03:02:04 +00:00
}
}
],
2021-12-29 03:20:31 +00:00
"Greeting": "Greeting text (optional)",
"Receiver": "Receiver name, ignored if Greeting is empty (optional)",
"Signature": "Signature text (default `Best Regards`) (optional)",
"Sender": "Sender text (default to site name) (optional)"
2021-12-29 03:02:04 +00:00
}
}
```
## Start
```shell
emailer.exe -addr 127.0.0.1:8000 -link https://www.taishinlife.com.tw/ -logo https://www.taishinlife.com.tw/assets/images/ui/site-header/taishin/logo.svg -name "台新人壽" -pretty
```