mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-19 19:09:13 -04:00
Item changes and Item additions email notifications with this change. Still to come is item deleted, comment added and comment updated.
26 lines
581 B
PHP
26 lines
581 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<html>
|
|
<head>
|
|
<title><?= $subject ?> </title>
|
|
</head>
|
|
<body>
|
|
<h2><?= sprintf(t("A new %s was added to %s"), $type, $parent_title); ?></h2>
|
|
<table>
|
|
<tr>
|
|
<td><?= t("Title:") ?></td>
|
|
<td><?= $item_title ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td><?= t("Url:") ?></td>
|
|
<td><a href="<?= $url ?>"><?= $url ?></a></td>
|
|
</tr>
|
|
<? if (!empty($description)): ?>
|
|
<tr>
|
|
<td><?= t("Description:") ?></td>
|
|
<td><?= $description ?></td>
|
|
</tr>
|
|
<? endif ?>
|
|
</table>
|
|
</body>
|
|
</html>
|