File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,12 +59,12 @@ export class EmailService {
5959 . verify ( )
6060 . then ( ( ) => {
6161 this . logger . log (
62- `SMTP transporter connected: ${ host } :${ port } (secure=${ secure } )`
62+ `SMTP transporter connected: ${ host } :${ port } (secure=${ secure } )` ,
6363 ) ;
6464 } )
6565 . catch ( ( err ) => {
6666 this . logger . warn (
67- "SMTP transporter verification failed: " + err ?. message
67+ "SMTP transporter verification failed: " + err ?. message ,
6868 ) ;
6969 } ) ;
7070 }
@@ -83,7 +83,7 @@ export class EmailService {
8383 this . logger . debug (
8484 `Email skipped (EMAIL_ENABLED=false): "${ opts . subject } " → ${
8585 Array . isArray ( opts . to ) ? opts . to . join ( "," ) : opts . to
86- } `
86+ } `,
8787 ) ;
8888 return { ok : true , skipped : true } ;
8989 }
@@ -106,7 +106,7 @@ export class EmailService {
106106 this . logger . log (
107107 `Email sent: ${ info . messageId } to ${
108108 Array . isArray ( opts . to ) ? opts . to . join ( "," ) : opts . to
109- } `
109+ } `,
110110 ) ;
111111 return { ok : true , info } ;
112112 } catch ( error ) {
You can’t perform that action at this time.
0 commit comments