gogjango/gjango

View on GitHub
mail/mail_interface.go

Summary

Maintainability
A
0 mins
Test Coverage
package mail

import "github.com/gogjango/gjango/model"

// Service is the interface to access our Mail
type Service interface {
    Send(subject string, toName string, toEmail string, content string) error
    SendWithDefaults(subject, toEmail, content string) error
    SendVerificationEmail(toEmail string, v *model.Verification) error
}