I need help for setting up SMTP URL Connection #12170
-
Describe your questionWe are in the process of enabling email notifications (password reset, user invitations, and export notifications) for our Langfuse application hosted in Azure Container Apps. For this feature to work, we are required to configure a valid SMTP connection URL. I kindly request your support in providing the following details or helping us generate the correct SMTP URL format that is compatible with our organization’s mail server: SMTP Hostname Port Number (preferably for STARTTLS or TLS connection) Authentication requirements Service account email App password or SMTP authentication key Whether STARTTLS/TLS is required Any organization-specific parameters or restrictions needed in the SMTP URL Langfuse requires the configuration to be set in this format: SMTP_CONNECTION_URL=smtp://:@<smtp_host>:?starttls=true Additionally, please confirm the appropriate FROM email address we can use for transactional emails. Your assistance will help us complete the setup and ensure smooth email delivery for Langfuse notifications. Thank you in advance for your support. Please let me know if any further information is required Langfuse Cloud or Self-Hosted?Self-Hosted If Self-HostedNo response If Langfuse CloudNo response SDK and integration versionsNo response Pre-Submission Checklist
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
To configure SMTP for transactional emails in Langfuse, you need to set two environment variables on your application containers(1):
SMTP Connection URL Format The connection URL is passed to Nodemailer(1). The format follows Nodemailer's connection string specification, using 'smtp:' or 'smtps:' as the protocol(2). For STARTTLS connections, the format is: Working Examples from the Community AWS SES example: Port 25 with STARTTLS: Important Configuration Notes
What You Need from Your Organization To create your SMTP connection URL, you'll need from your IT team:
Once you have these details, construct your connection string following the format above and set both environment variables in your Azure Container Apps configuration. 📚 Sources:
Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
@Mahesh-ai123 As outlined in our documentation (https://langfuse.com/self-hosting/configuration/transactional-emails) whatever email you configure is forwarded to nodemailer and needs to align with their format: https://nodemailer.com/smtp.
Can you check their documentation page and let us know if any question remains?