Introduction
Send emails through Lettermint’s SMTP relay.
Enable SMTP
First, enable SMTP for the project you want to use. You can find this setting under your Projects.
SMTP Configuration
Use these settings to configure your application or email client:
Setting | Value |
---|---|
Host | smtp.lettermint.co |
Port | 587 (see available ports ) |
Authentication | PLAIN , LOGIN and CRAM-MD5 are supported |
Username | lettermint |
Password | Your Lettermint API token |
Available ports
Lettermint supports multiple SMTP ports to accommodate different network environments and security requirements:
Port | Security | Notes |
---|---|---|
25 | STARTTLS (optional encryption upgrade) | Not recommended, blocked by many ISPs and cloud providers |
587 | STARTTLS (encryption upgrade) | Recommended for most applications |
465 | Implicit TLS (SMTPS, encrypted from connection start) | Good alternative when 587 is blocked |
2525 | STARTTLS (encryption upgrade) | Alternative to port 25 |
2465 | STARTTLS (encryption upgrade) | Alternative to port 465 |
2587 | STARTTLS (encryption upgrade) | Alternative to port 587 |
Understanding TLS Options
- STARTTLS: Connection starts unencrypted and upgrades to TLS encryption. Used on ports 25, 587, 2525, 2465 and 2587.
- SMTPS: Connection is encrypted from the start. Used on port 465.
If you’re not sure which port to use, start with port 587. It’s widely accepted and provides good security through STARTTLS.
Port 25 is often blocked by ISPs and cloud providers to prevent spam. We recommend using alternative ports whenever possible.
Authentication
Authentication is always required when using Lettermint’s SMTP service:
- Use your Lettermint API token as both the username and password
- Always use TLS encryption (either STARTTLS or Implicit TLS) to protect your credentials
- Your API token can be found in your Lettermint dashboard under API settings
Rate limits
SMTP relay follows the same rate limits as our API:
- Free tier: 10 emails per day
- Paid plans: No rate limit
Testing Your Configuration
Test your SMTP setup with a simple command-line tool:
For language-specific examples and application configurations, please refer to our dedicated guides in the documentation.