Mail class

Constructors

Mail()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

bcc(String email) Mail
bccMany(List<String> emails) Mail
cc(String email) Mail
ccMany(List<String> emails) Mail
html(String html) Mail
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
queue() Future<void>
sendMail() Future<void>
subject(String subject) Mail
text(String text) Mail
to(String email) Mail
toMany(List<String> emails) Mail
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

setup({required String host, required int port, required String username, required String password, bool useSSL = false, bool useTLS = true}) → void