domains

package
v0.0.0-...-4288ce0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 26, 2024 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ParseTemplate

func ParseTemplate(file string, data interface{}) (string, *errors.ErrorStruct)

Types

type AccountConfirmation

type AccountConfirmation struct {
	Email string `json: "email"`
	Token string `json: "token"`
}

type BaseErrorHttpResponse

type BaseErrorHttpResponse struct {
	Status int    `json:"status"`
	Path   string `json:"path"`
	Time   string `json:"time"`
	Error  string `json:"error"`
}

type BaseHttpResponse

type BaseHttpResponse struct {
	Status int         `json:"status"`
	Data   interface{} `json:"data"`
}

type NotificationMail

type NotificationMail struct {
	Text  string `json:"text"`
	Email string `json:"email"`
}

type RequestResetPassword

type RequestResetPassword struct {
	Email string `json:"email"`
	Token string `json:"token"`
}

type Sender

type Sender struct {
	Email          string
	Password       string
	SMTPServer     string
	SMTPServerPort int
}

func NewEmailSender

func NewEmailSender(email, password, SMTPServer string, SMTPServerPort int) *Sender

func (*Sender) SendHTMLEmail

func (s *Sender) SendHTMLEmail(templatePath string, to, cc []string, subject string, data interface{}, files []string) *errors.ErrorStruct

func (*Sender) SendPlainEmail

func (s *Sender) SendPlainEmail(to, cc []string, subject, data string, files []string) *errors.ErrorStruct

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL