priority method
Sets the email priority.
priority should be 1 (highest), 3 (normal), or 5 (lowest).
Implementation
@override
MailerInterface priority(int priority) {
_message.setPriority(priority);
return this;
}
Sets the email priority.
priority should be 1 (highest), 3 (normal), or 5 (lowest).
@override
MailerInterface priority(int priority) {
_message.setPriority(priority);
return this;
}