all repos — flounder @ b1fa8cb01f71328091f20fe0acc1c8fb2ca9483f

A small site builder for the Gemini protocol

mail.go (view raw)

 1package main
 2
 3import (
 4	"log"
 5	"net/smtp"
 6)
 7
 8func SendEmail(email string, subject string, body string) {
 9	auth := smtp.PlainAuth("", c.SMTPUsername, c.SMTPPassword, "smtp.migadu.com")
10	msg := "From: " + c.SMTPUsername + "\n" +
11		"To: " + email + "\n" +
12		"Subject:" + subject + "\n" +
13		body
14	err := smtp.SendMail(c.SMTPServer, auth, c.SMTPUsername, []string{email}, []byte(msg))
15	if err != nil {
16		// doesnt need to block anything i think
17		log.Println(err)
18	}
19}