SMTP credentials
Use these credentials in your SMTP client:- SMTP server:
smtp-out.mailglyph.com - Username:
mailglyph - Password: your project secret key
- Port (STARTTLS):
587 - Port (SSL/TLS):
465
How to set it up
Collect SMTP settings
Copy SMTP host, ports, username, and your project secret key from your SMTP settings.
Configure your app or email client
Set SMTP auth with username
mailglyph and password = your project secret key.Send a test email
Send a message from a verified sender address like
[email protected].SMTP behavior and limits
- Authentication is required for every SMTP session.
- Sender domain must belong to your project and be verified.
- Maximum recipients per message is
5. - Maximum message size is
10 MB. - Messages must include:
- a valid sender
- at least one recipient
- a subject
- body content (HTML or text)
Example (Node.js / Nodemailer)
Example (Python / smtplib)
Example (Laravel)
Set your mailer to SMTP in.env:
Troubleshooting
Invalid username: usemailglyphas username.Invalid API key: use your project secret key (not a public key).Sender domain is not verified or not associated with your account: verify the sender domain in your current project.- TLS connection issues on port 465: use port 587 with STARTTLS.

