To Reproduce
- Send an email invite
- Open the email in Mail.app, link is not clickable
Current vs. Expected behavior
Invite emails sent using nodemailer seem to be sent using quoted-printable encoding which does not render properly in Mail.app.
The following html is in the raw message
`<p=
You are invited to join Team on Dokploy. Click the link to accept the invit=
ation: <a href=3D"myurl.com/invitation?token=3DElnPjhMt=
xKlK50rTTjYXuBcJE7GU2LSk">Accept Invitation
=09`
switching to sending
transporter.sendMail({ from, to, subject, html, 'textEncoding': 'base64' });
seem to fix the issue on a simple local test I did.
Relevant links
Provide environment information
Dokploy 0.24.12 running in proxmox VM
Which area(s) are affected? (Select all that apply)
Installation
Are you deploying the applications where Dokploy is installed or on a remote server?
Same server where Dokploy is installed
Additional context
Tested on Dokploy 0.24.12 running in proxmox VM
Will you send a PR to fix it?
No
To Reproduce
Current vs. Expected behavior
Invite emails sent using nodemailer seem to be sent using quoted-printable encoding which does not render properly in Mail.app.
The following html is in the raw message
`<p=
switching to sending
transporter.sendMail({ from, to, subject, html, 'textEncoding': 'base64' });seem to fix the issue on a simple local test I did.
Relevant links
Provide environment information
Dokploy 0.24.12 running in proxmox VMWhich area(s) are affected? (Select all that apply)
Installation
Are you deploying the applications where Dokploy is installed or on a remote server?
Same server where Dokploy is installed
Additional context
Tested on Dokploy 0.24.12 running in proxmox VM
Will you send a PR to fix it?
No