Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WD-15025 - feat: add built verification email #423

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

huwshimi
Copy link
Contributor

Changes

Commit the built email template.
NOTE: the logo needs to be attached by the backend. Not sure if that should be done before landing this PR?

https://warthogs.atlassian.net/browse/WD-15025

QA

fetch("/api/v0/identities", {
  method: "POST",
  body: JSON.stringify({
  schema_id: "default",
  traits: { email: "test123@example.com" },
  credentials: { password: { config: { password: "123" } } },
})
});
  • Go to the mail UI: http://localhost:18025/ (I had to port forward to access this from outside my multipass: kubectl port-forward services/mailhog 18025:8025)
  • You should have a "Complete your registration" email that will include the HTML content (without the logo as that needs to be included by the backend).

@huwshimi huwshimi requested a review from a team as a code owner September 25, 2024 05:14
@huwshimi huwshimi force-pushed the verification-email-integration branch from b999e2f to 0d6b14d Compare September 25, 2024 05:34
@huwshimi huwshimi force-pushed the verification-email-integration branch from 0d6b14d to 5a43aef Compare September 25, 2024 06:24
Copy link
Contributor

@BarcoMasile BarcoMasile left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

About the logo: right now the UI serves assets only under the assets folder (take a look at this)
If you move the image under the assets folder and adjust the url it will automatically work

ui/emails/mjml/user-invite.mjml Outdated Show resolved Hide resolved
@huwshimi
Copy link
Contributor Author

About the logo: right now the UI serves assets only under the assets folder (take a look at this) If you move the image under the assets folder and adjust the url it will automatically work

The most widely supported method of handling images in HTML emails is to include them as CID attachments. It looks like go-mail supports this, so we'd need the backend service to attach the logo (we'll also need update the template to use an image src with a cid:.. reference).

The other options are to use a CDN like assets.ubuntu.com or use a base64 embed, but these are progressively less supported.

@nsklikas
Copy link
Contributor

The most widely supported method of handling images in HTML emails is to include them as CID attachments. It looks like go-mail supports this, so we'd need the backend service to attach the logo (we'll also need update the template to use an image src with a cid:.. reference).

The other options are to use a CDN like assets.ubuntu.com or use a base64 embed, but these are progressively less supported.

After reading a little about this, I am curious. It's true that CID is the oldest method of all, but it is not clear if it is the best option. It feels like most people nowadays go with the link option and pull the image from a CDN as it's easier to use and it decreases the size of the mail. I went through emails that I have received from various sites and all of them seem to be using CDN. Can you provide some reading material around or some references?

@huwshimi
Copy link
Contributor Author

The most widely supported method of handling images in HTML emails is to include them as CID attachments. It looks like go-mail supports this, so we'd need the backend service to attach the logo (we'll also need update the template to use an image src with a cid:.. reference).
The other options are to use a CDN like assets.ubuntu.com or use a base64 embed, but these are progressively less supported.

After reading a little about this, I am curious. It's true that CID is the oldest method of all, but it is not clear if it is the best option. It feels like most people nowadays go with the link option and pull the image from a CDN as it's easier to use and it decreases the size of the mail. I went through emails that I have received from various sites and all of them seem to be using CDN. Can you provide some reading material around or some references?

There aren't really very good resources on the topic and what info there is is often out of date (e.g. many articles mention CID not working in Gmail, but this is no longer true).

The main issue with CDNs is that they are blocked by default in many (all?) clients, but if we're happy with that then we can change this to use the asset server.

If we can get the budget for it we can use a mailbox testing tool to see how this email performs in the real world.

@BarcoMasile
Copy link
Contributor

@nsklikas @huwshimi
I agee with Nikos about the use of CDN, I experience the same thing in my inbox.
That said, if Huw think is ok, I'd move on and put the logo in the assets folder so it's correctly served like other assets.
If we want to switch to any other thing I'd consider this an improvement to allocate post-sprint.
Do we agree?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants