Appearance
SMTP Guide
Mailisk ships with a virtual SMTP relay so you can exercise email flows end-to-end without touching production mail infrastructure or harming your sending reputation. Every namespace gets its own SMTP credentials and messages are delivered instantly into the same namespace inbox.
Retrieve credentials
- Open the namespace in the dashboard and click Additional settings → SMTP settings.
- Or call
GET /api/smtp/{namespace}/settingsfrom your CI job to fetch the current host, port, username, and password.
sh
curl --request GET \
--url https://api.mailisk.com/api/smtp/{namespace}/settings \
--header 'Accept: application/json' \
--header 'X-Api-Key: {Api Key}'Key points:
- The from and to addresses must end with
@{namespace}.mailisk.net. - Mailisk does not throttle virtual SMTP traffic, but each delivered message still counts toward the namespace's inbound quota.
