f.Mail().setBody(content)
setBody()를 통해 메일 내용을 설정할 수 있습니다.
content
Yes
String
본문 내용
// 메일을 보내기 전 내용을 설정합니다. let mail = f.Mail(); mail.setBody("Hello there.") ... mail.send();
Last updated 9 months ago
Was this helpful?