Skip to content

Commit 5681edd

Browse files
chore: wip
1 parent 2447591 commit 5681edd

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

storage/framework/core/email/src/drivers/mailtrap.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ export class MailtrapDriver extends BaseEmailDriver {
1414
constructor() {
1515
super()
1616
this.host = config.services.mailtrap?.host ?? 'https://sandbox.api.mailtrap.io/api/send'
17-
this.token = 'c36253a573dea8edac2c549f349a3cb9'
18-
// this.token = config.services.mailtrap?.token ?? ''
19-
this.inboxId = 403353
20-
// this.inboxId = config.services.mailtrap?.inboxId ? Number(config.services.mailtrap.inboxId) : undefined
17+
this.token = config.services.mailtrap?.token ?? ''
18+
this.inboxId = config.services.mailtrap?.inboxId ? Number(config.services.mailtrap.inboxId) : undefined
2119
}
2220

2321
public async send(message: EmailMessage, options?: RenderOptions): Promise<EmailResult> {

0 commit comments

Comments
 (0)