diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-03-21 00:09:22 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-21 00:09:22 +1300 |
commit | 07c7d5c08583734ae70c5c9e6cec3332726b4200 (patch) | |
tree | 7c87839c1793a5c21a868b32f31e02b2d161625f /templates/mail | |
parent | 7fc40b50d77b5724473ffd91e8d1b00418c27cc2 (diff) | |
parent | 696ac56a6174a5ebfec939871a579ba54ee96963 (diff) | |
download | trackermap-server-07c7d5c08583734ae70c5c9e6cec3332726b4200.tar.gz trackermap-server-07c7d5c08583734ae70c5c9e6cec3332726b4200.tar.bz2 trackermap-server-07c7d5c08583734ae70c5c9e6cec3332726b4200.zip |
Merge pull request #3022 from Abyss777/pnone_device
Handle incoming SMS from devices as Event
Diffstat (limited to 'templates/mail')
-rw-r--r-- | templates/mail/textMessage.vm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/mail/textMessage.vm b/templates/mail/textMessage.vm new file mode 100644 index 000000000..174173c85 --- /dev/null +++ b/templates/mail/textMessage.vm @@ -0,0 +1,9 @@ +#set($subject = "$device.name: text message received") +<!DOCTYPE html> +<html> +<body> +Device: $device.name<br> +Message: $event.getString("message")<br> +Time: $dateTool.format("YYYY-MM-dd HH:mm:ss", $event.serverTime, $locale, $timezone)<br> +</body> +</html> |