interface EmailTry {
    code: number;
    message: string;
    rank: number;
    triedAt?: Date;
}

Properties

code: number

The SMTP status code received after the attempt. 0 if the attempt did not reach an SMTP server.

message: string

The SMTP message received. If the attempt did not reach an SMTP server, the message returned explains what happened.

rank: number

Rank number of this attempt to send the email.

triedAt?: Date

Date of the attempt to send the email.