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
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-12-29 03:28:21 +00:00
|
|
|
Example:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"From":"test@kumoly.io",
|
|
|
|
"TO": ["evan.yf.chen@ibm.com","test@kumoly.io"],
|
|
|
|
"Title": "台新人壽通知",
|
|
|
|
"Body": {
|
|
|
|
"App":{
|
|
|
|
"Theme": "#d70c18",
|
|
|
|
"FooterColor": "#ffffff"
|
|
|
|
},
|
|
|
|
"Intros": ["感謝您使用台新人壽服務"],
|
|
|
|
"Actions": [
|
|
|
|
{
|
|
|
|
"Button": {
|
|
|
|
"Text": "前往保護專區",
|
|
|
|
"Link": "https://www.taishinlife.com.tw/",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"Greeting": "您好",
|
|
|
|
"Receiver": "保戶",
|
|
|
|
"Signature": "祝您有個愉快的一天",
|
|
|
|
"Sender": "台新人壽"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
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
|
|
|
|
```
|