File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
storage/framework/core/email/src/drivers Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,8 @@ export class MailtrapDriver extends BaseEmailDriver {
14
14
constructor ( ) {
15
15
super ( )
16
16
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
21
19
}
22
20
23
21
public async send ( message : EmailMessage , options ?: RenderOptions ) : Promise < EmailResult > {
You can’t perform that action at this time.
0 commit comments