f.Mail().send()

개요

send()를 통해 메일을 발송합니다.

예시

// f.Mail() 에서 설정한 내용으로 메일을 전송합니다.
let mail = f.Mail();
...
mail.send();

Last updated