From bd1e77a98425edff95657ce40d14f4fd1a4fd84b Mon Sep 17 00:00:00 2001 From: HugoCasa Date: Wed, 2 Oct 2024 10:54:07 +0200 Subject: [PATCH] fix --- blog/2024-10-07-email-triggers/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/2024-10-07-email-triggers/index.mdx b/blog/2024-10-07-email-triggers/index.mdx index 25557fbb6..0228ece86 100644 --- a/blog/2024-10-07-email-triggers/index.mdx +++ b/blog/2024-10-07-email-triggers/index.mdx @@ -21,7 +21,7 @@ The general flow of an email from sender to recipient is as follows: Note: The recipient's email client then retrieves the email from the recipient's SMTP server, typically using POP or IMAP. -The usual flow involves two SMTP exchanges: sender_email_client <-> sender_smtp_server <-> recipient_smtp_server. +The usual flow involves two SMTP exchanges: sender_email_client \<-> sender_smtp_server \<-> recipient_smtp_server. In this article, we will focus on implementing the receiving part of the SMTP server, specifically receiving emails from other SMTP servers. The protocol for receiving emails from either email clients or other SMTP servers is the same; the only difference lies in the port used and the security process, which we will cover later.