---
title: "Log of e-mails sent from web server"
canonical_url: "https://www.zone.lv/help/kb/log-of-e-mails-sent-from-web-server/"
post_type: "ht_kb"
published: "2021-04-21T09:56:27+00:00"
modified: "2021-08-31T19:47:12+00:00"
language: "en"
author: "postsync"
taxonomies:
  ht_kb_category:
    - name: "E-mail"
      url: "https://www.zone.lv/help/kb-categories/e-mail-en/"
---

# Log of e-mails sent from web server

E-mail sent from Shared Hosting web server passes through filter and headers are logged for security and deliverability tracking (see [Sending e-mail trough web-server](https://www.zone.lv/help/en/kb/sending-e-mail-trough-web-server-php-mail/)).

Owner of the server and users with delegatons can access last 7 days of the log in server management under `Logs` -&gt; `Webserver e-mail`. Log can be used to answer questions like::

- has the web application tried to send a particular email?
- has the sending of email been blocked (exceeding limits or triggering spam filter)
- could the server be sending unsolicited email (malware or unprotected web forms)

![](https://www.zone.lv/static/sites/5/vmail-log-eng.png)

Log file can be downloaded as .json file with additional fields.

Explanation of main fields:

- `passed` – did e-mail pass the filter? (N means blocking due to exceeding limits or triggering spam detection)
- `header_from` – sender’s address (envelope\_from is available in .json)
- `rcpt` – actual recipient (includes bcc: addresses; header\_to is available .json)
- `php script` – script that sent the email (available only if PHP mail() was used – missing if a library used another method)
