Skip to main content
Email heartbeat monitoring

If it can send an email, it can check in.

Not every job can make an HTTP call. Locked-down networks, legacy cron boxes, and internal servers often can only send mail through an SMTP relay. Every Seiri monitor gets a unique @ping.seiri.app address — send it an email when your job finishes, and Seiri treats it exactly like a ping.

When email heartbeats make sense

Restricted or air-gapped networks

If outbound HTTPS is blocked by policy but SMTP relay is allowed, an email heartbeat gets around the restriction without a firewall exception.

Legacy servers and appliances

Older systems that ship with `sendmail` or `mail` but no modern HTTP client can still check in without new tooling.

Third-party tools with email alerts

Some backup tools, NAS devices, and monitoring appliances only support email notifications — forward theirs to your heartbeat address.

Simplicity over configuration

Sometimes the fastest integration is a one-line `mail` command instead of installing curl or a client library.

How it works

1

Enable email heartbeat

Create a monitor and switch it to email mode. You'll get a unique address like a1b2c3d4@ping.seiri.app.

2

Send an email on success

Any email to that address counts — subject and body don't need a special format.

3

Get alerted if it stops

Miss the expected window and grace period, and Seiri alerts you through Slack, SMS, another email, or a webhook.

Example: cron job using the `mail` command
# Runs the backup, then emails Seiri on success
0 2 * * * /path/to/backup-script.sh && \
  echo "backup ok $(date -u)" | mail -s "nightly-backup" a1b2c3d4@ping.seiri.app

Can make HTTP calls instead? See cron job monitoring for the curl-based approach.

FAQ

What is an email heartbeat?

An email heartbeat is a check-in sent by email instead of an HTTP request. Every Seiri monitor can be configured with a unique @ping.seiri.app address; when your job sends an email to that address, Seiri treats it exactly like a successful ping.

Why would I use email instead of an HTTP ping?

Many internal servers, legacy systems, and locked-down networks can send outbound email via SMTP relay but cannot make arbitrary outbound HTTPS calls. Email heartbeats let those systems check in without any new firewall rules or client libraries.

Does the email subject or body need a specific format?

No. Seiri only needs to receive an email at the monitor's unique address within the expected schedule and grace period — subject and body content are not required to match a format.

How many email heartbeats do I get?

The Free plan includes 1 email heartbeat, Growth includes 5, and Scale includes 25.

Give your locked-down jobs a voice

Free forever. No credit card required.