For the complete documentation index, see llms.txt. This page is also available as Markdown.

f.Mail().addReceiver()

f.Mail().addReceiver(mail)

개요

addReceiver()를 통해 수신자를 설정할 수 있습니다.

파라미터

파라미터명
필수여부
타입
제약사항
설명

mail

Yes

String

수신자 메일

예시

// 메일을 보내기 전 수신자 메일을 설정합니다.
let mail = f.Mail();
mail.addReceiver("team@flextudio.com");
...
mail.send();

마지막 업데이트

도움이 되었나요?