musala/cmd/trello2mail/main.go

45 lines
1 KiB
Go
Raw Normal View History

2018-08-21 08:36:54 +00:00
package main
import (
2018-08-22 16:57:50 +00:00
"fmt"
// "gopkg.in/russross/blackfriday.v2"
// "github.com/davecgh/go-spew/spew"
2018-08-21 08:36:54 +00:00
)
func main() {
// Setup config
config := NewConfig()
config.Parse()
2018-08-21 08:36:54 +00:00
// Get task list as markdown
trelloCtx := NewTrello(config.TrelloToken)
trelloBoard := trelloCtx.GetBoard(config.TrelloUrl)
trelloMarkdown := trelloBoard.ExportToMarkdown()
2018-08-22 16:57:50 +00:00
trelloHtml := trelloBoard.ExportToHtml()
config.EmailSubject = fmt.Sprintf("Daily mail for %s", trelloBoard.Name)
2018-08-21 23:50:50 +00:00
// Create email enveloppe
email := NewEmail()
email.SetHeaders(EmailConfig{
From: config.EmailFrom,
To: config.EmailTo,
Subject: config.EmailSubject,
})
2018-08-22 16:57:50 +00:00
email.SetBody(trelloHtml, trelloMarkdown)
2018-08-21 23:50:50 +00:00
// Connect and send email
transport := NewTransport(SmtpConfig{
Hostname: config.SmtpHostname,
Port: config.SmtpPort,
Username: config.SmtpUsername,
Password: config.SmtpPassword,
AuthType: config.SmtpAuthType,
SecurityType: config.SmtpSecurityType,
})
2018-08-21 23:50:50 +00:00
transport.Dial()
transport.Authenticate()
transport.Send(email)
2018-08-21 23:50:50 +00:00
transport.Quit()
2018-08-21 08:36:54 +00:00
}