You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! After deleting account the token is reused in creating a new random account. Maybe the deleteMe method should reset the this.token?
const mailService = new Mailjs();
await mailService.createOneAccount();
await mailService.deleteMe();
// This call will throw Error: This account no longer exists.
await mailService.createOneAccount();
You could of course create a new Mailjs() instance for the new account, but that is just extra code.
The text was updated successfully, but these errors were encountered:
Hi! After deleting account the token is reused in creating a new random account. Maybe the deleteMe method should reset the
this.token
?You could of course create a new Mailjs() instance for the new account, but that is just extra code.
The text was updated successfully, but these errors were encountered: