Search from the web interface
To open Log Search, log in to the MailChannels Host Console and navigate to Outbound > Log Search.Basic search
Type any term in the search box at the top of the page. MailChannels searches all indexed fields — including the from address, recipient addresses, and subject line — for that term. For example, enteringjoe@example.com returns all messages where that address appears in any field.
Advanced search
You can narrow results by searching a specific field using the syntaxfield:value. Enclose multi-word values in double quotes. Combine multiple field searches with a space (logical AND) or the AND / OR keywords (which must be uppercase).
example queries
Searchable fields
| Field | Description | Example |
|---|---|---|
date | Date the message was processed (YYYY-MM-DD) | date:2024-08-15 |
delivered | Whether the message was delivered (Y or N) | delivered:Y |
lastcmd | Last SMTP command received (CONN, MAIL, RCPT, DATA) | lastcmd:DATA |
rcpt | Recipient address | rcpt:bob@example.com |
rcpt_bad | Message addressed to a non-existent recipient (y or n) | rcpt_bad:y |
sender | Envelope sender address | sender:joe@example.com |
sender_id | Sender ID as carried in the X-AuthUser header | sender_id:testuser |
smtp_code | SMTP response code returned by the receiving server | smtp_code:550 |
spam_disposition | Spam classification (bulk, spam, etc.) | spam_disposition:bulk |
subject | Message subject line | subject:"invoice due" |
to_date | Upper date bound — no entries newer than this date are returned | to_date:2024-09-01 |
Escaping control characters
Certain characters must be escaped with a backslash when used inside a search value:| Character | Escaped form |
|---|---|
& | \& |
" | \" |
: | \: |
subject:"This is important\: foo".
Sender Profiles
From any Log Search result, you can open a Sender Profile for a specific sender by clicking the Sender Profile icon to the left of the sender ID. A Sender Profile shows:- Every message that sender has submitted
- Any alert notifications generated for that sender
- A graphical ham-to-spam ratio with current counts
Log Search API
The Log Search API provides programmatic access to the same delivery data available in the web interface. Providers typically use it to embed delivery diagnostics directly into their hosting control panels or support ticketing systems. With the Log Search API you can:- Search logs by any criteria — recipient address, SMTP response code, subject, sender, spam disposition, and more.
- Identify delivered and undelivered messages to pinpoint deliverability problems.
- Detect spam and virus dispositions to audit the compliance of your users’ sending.
- Aggregate results by time interval — days, hours, or weeks — to identify volume trends and detect when an abuse campaign started.
- Paginate through large result sets for systematic analysis.
Sender Profile API
The Log Search API is complemented by the Sender Profile API, which exposes the per-sender behavioral data shown in the Host Console. Use it to:- Search and filter transaction logs for a specific sender
- Retrieve detailed sender behavior information to build a sender profile
- Retrieve alert notification history for a sender
Contact the MailChannels sales team to enable API access for your account. Once enabled, refer to the API documentation for authentication details and endpoint reference.

