subject method

  1. @override
MailerInterface subject(
  1. String subject
)
override

Sets the email subject.

Implementation

@override
MailerInterface subject(String subject) {
  _message.setSubject(subject);
  return this;
}