From 43678fb67bdd73d40b5a6ad3d201a152151380fe Mon Sep 17 00:00:00 2001 From: Asim Arshad Date: Fri, 15 May 2026 15:46:28 +0100 Subject: [PATCH] docs: fix SMTP username guidance --- fern/pages/guides/imap-smtp.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fern/pages/guides/imap-smtp.mdx b/fern/pages/guides/imap-smtp.mdx index 7a81916e..71ab242c 100644 --- a/fern/pages/guides/imap-smtp.mdx +++ b/fern/pages/guides/imap-smtp.mdx @@ -146,7 +146,7 @@ Use SMTP to send emails from your AgentMail inbox. | ------------ | ------------------------------ | | **Host** | `smtp.agentmail.to` | | **Port** | `465` | -| **Username** | agentmail | +| **Username** | Your inbox email (e.g., `myinbox@agentmail.to`) | | **Password** | Your API key | | **SSL/TLS** | **Required** (must be enabled) | @@ -225,6 +225,7 @@ sendEmail().catch(console.error); | Error | Cause | Solution | | ----------------------- | ----------------------- | ------------------------------------------------------ | | "Authentication failed" | Invalid credentials | Verify your inbox email and API key from the console | +| "Authentication failed" | Username set to `agentmail` | Use your inbox email address as the SMTP username | | "Connection refused" | SSL not enabled | Enable SSL/TLS in your client settings | | "Connection timeout" | Firewall blocking ports | Ensure ports 993 (IMAP) and 465/587 (SMTP) are open | | "Sender not authorized" | Wrong From address | Use your inbox's email address as the From address |