text method

  1. @override
MailerInterface text(
  1. String content
)
override

Sets the plain text body of the email.

Implementation

@override
MailerInterface text(String content) {
  _message.setTextBody(content);
  return this;
}