from := "보낼사람의 지메일"
password := "비밀번호"
toList := []string{"받는사람 메일주소","받는사람 메일주소2"}
host := "smtp.gmail.com"
port := "587"
msg := "Hello myungsworld"
body := []byte(msg)
auth := smtp.PlainAuth("", from, password, host)
err := smtp.SendMail(host+":"+port, auth, from, toList, body)
// handling the errors
if err != nil {
panic(err)
}
fmt.Println("따봉")
'Go' 카테고리의 다른 글
golang Gracefully Shutdown (위대한 쇼다운맨 ) (0) | 2022.05.03 |
---|---|
Golang TDD (테스트 주도 개발) 유닛테스트 루트 절대경로 설정 (0) | 2022.04.08 |
고(golang) Context 겉핥기#3 (0) | 2022.01.10 |
고(golang) 고루틴에 관하여 #2 (0) | 2021.12.23 |
고(golang) 비동기 큐 구현 (0) | 2021.11.29 |