attach method
Attaches a file to the email.
path is the file path on disk.
name is the optional display name for the attachment.
mimeType is the optional MIME type.
Implementation
@override
MailerInterface attach(String path, {String? name, String? mimeType}) =>
defaultMailer.attach(path, name: name, mimeType: mimeType);