Mail on contact triggerΒΆ

Description

Sending a mail based on a contact device trigger including the time when it happened.

Devices

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  "currentdatetime": {
    "protocol": [ "datetime" ],
    "id": [{
      "longitude": 1.2345,
      "latitude": 12.3456
    }],
    "year": 2015,
    "month": 1,
    "day": 27,
    "hour": 14,
    "minute": 37,
    "second": 8,
    "weekday": 3,
    "dst": 1
  },
  "frontdoor-contact": {
    "protocol": [ "kaku_contact" ],
    "id": [{
      "id": 123456,
      "unit": 0
    }],
    "state": "opened"
  }
}

Rule

1
2
3
4
5
6
{
  "frontdoor-contact-mail": {
    "rule": "IF frontdoor-contact.state IS opened THEN sendmail TO foo@bar.com SUBJECT Frontdoor was opened at DATE_FORMAT(currentdatetime, %c) MESSAGE .",
    "active": 1
  }
}

Changed in version 8.1.0.

1
2
3
4
5
6
{
  "frontdoor-contact-mail": {
    "rule": "IF frontdoor-contact.state == opened THEN sendmail TO foo@bar.com SUBJECT 'Frontdoor was opened at ' . DATE_FORMAT(currentdatetime, %c) MESSAGE ..",
    "active": 1
  }
}