Smtp.SMTPMessage
Class: SMTPMessage
smtp.SMTPMessage
SMTPMessage is a message to be sent over SMTP
Example
Table of contents
Constructors
Methods
Constructors
constructor
• new SMTPMessage(): SMTPMessage
Returns
Defined in
smtp.ts:83
Methods
Auth
▸ Auth(username
): SMTPMessage
Auth when called authenticates using username and password before sending the message
Parameters
Name | Type |
---|---|
username | string |
Returns
Example
Defined in
smtp.ts:149
Body
▸ Body(msg
): SMTPMessage
Body adds the message body to the message
Parameters
Name | Type |
---|---|
msg | Uint8Array |
Returns
Example
Defined in
smtp.ts:135
From
▸ From(email
): SMTPMessage
From adds the from field to the message
Parameters
Name | Type |
---|---|
email | string |
Returns
Example
Defined in
smtp.ts:93
String
▸ String(): string
String returns the string representation of the message
Returns
string
Example
Defined in
smtp.ts:167
Subject
▸ Subject(sub
): SMTPMessage
Subject adds the subject field to the message
Parameters
Name | Type |
---|---|
sub | string |
Returns
Example
Defined in
smtp.ts:121
To
▸ To(email
): SMTPMessage
To adds the to field to the message
Parameters
Name | Type |
---|---|
email | string |
Returns
Example
Defined in
smtp.ts:107
Was this page helpful?