mirror of https://github.com/gophish/gophish
10 lines
152 B
Go
10 lines
152 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"net/smtp"
|
||
|
)
|
||
|
|
||
|
func Send(email Email, server Server) {
|
||
|
auth = smtp.PlainAuth("", server.User, server.Password, server.Server)
|
||
|
}
|