Fix email sender format in mailer service
This commit is contained in:
parent
7a1f4ade54
commit
9733cda490
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ const mailer = async ({ to, subject, html }: MailerProps) => {
|
|||
smtpTransport.use("compile", htmlToText());
|
||||
|
||||
const message = {
|
||||
from: env.ARUBA_USER,
|
||||
from: `"InfoAlloggi" <${env.ARUBA_USER}>`,
|
||||
to: to,
|
||||
subject: subject,
|
||||
html: html,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue