replyTo method
Sets the reply-to address.
Implementation
@override
MailerInterface replyTo(String address, [String? name]) {
_message.setReplyTo(address, name);
return this;
}
Sets the reply-to address.
@override
MailerInterface replyTo(String address, [String? name]) {
_message.setReplyTo(address, name);
return this;
}