-
Notifications
You must be signed in to change notification settings - Fork 1
/
mailjet.go
75 lines (60 loc) · 1.72 KB
/
mailjet.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package config
import (
log "github.com/sirupsen/logrus"
"github.com/mailjet/mailjet-apiv3-go"
)
// Mailjet is the email client object
type Mailjet struct {
APIKey string `envconfig:"USPY_MAILJET_KEY"`
Secret string `envconfig:"USPY_MAILJET_SECRET"`
client *mailjet.Client
}
// Email defaults
const (
Sender = `no-reply@uspy.me`
Name = `USPY`
)
// Verification
const (
VerificationSubject = `Verifique sua conta para usar o USPY =)`
PasswordRecoverySubject = `Aqui está seu link de recuperação de senha do USPY =)`
VerificationContent = `Olá! Bem vindo ao USPY!
Por questões de segurança, precisamos que você verifique a sua conta através do seguinte link:
<a href="%s">Clique aqui para verificar sua conta.</a>
`
PasswordRecoveryContent = `Opa =), aqui está seu link de recuperação de senha!
Caso esse pedido não tenha sido feito por você, desconsidere esse e-mail.
<a href="%s">Clique aqui para redefinir sua senha.</a>
`
)
// Setup initializes the mailjet client using its API Key and Secret
func (m *Mailjet) Setup() {
if m.APIKey != "" && m.Secret != "" {
m.client = mailjet.NewMailjetClient(m.APIKey, m.Secret)
} else {
log.Error("failed to configure email client")
}
}
// Send sends an email.
//
// It takes a target email recipient, subject and HTML content.
func (m *Mailjet) Send(target, subject, content string) error {
messagesInfo := []mailjet.InfoMessagesV31{
{
From: &mailjet.RecipientV31{
Email: Sender,
Name: Name,
},
To: &mailjet.RecipientsV31{
mailjet.RecipientV31{
Email: target,
},
},
Subject: subject,
HTMLPart: content,
},
}
messages := mailjet.MessagesV31{Info: messagesInfo}
_, err := m.client.SendMailV31(&messages)
return err
}