jdeblasio / gsend

A simple gmail sending library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Usage

m := &gsend.Gmail {
    From: "from@gmail.com",
    To: "to@somewhere.com",
    Subject: "mail title",
    Message: "body text",
    Password: "<password>",
}

e := m.Send() 
if e != nil {
    panic(e)
}

About

A simple gmail sending library


Languages

Language:Go 96.7%Language:Makefile 3.3%