<?php
include("lang.en.php");
/*
* This is the email template file for: english.
*/
// Notification stuffs
// New user info page (for auto-signup)
$options['signupEmailTemplate'] = <<<EOT
An account has been created for you in the {$options['systemName']}
ticket tracking system.
Username: %UNAME%
Password: %PASS%
You can sign into the system at:
%BASE_URL%
EOT;
// Notification-Template
$options['notificationTemplate'] = <<<EOT
%TICKET_NAME% #%NUM% has been %ACTION%.
-------------------------------------------------------------------
Description: %DESC%
{$verbage['modification']}: %MOD_BY%
%MOD%
-------------------------------------------------------------------
You can view this ticket at
%BASE_URL%?area=view&num=%NUM%
on the %SYSTEM_NAME% system.
EOT;
// Subject for e-mails...
$options['notificationSubjectTemplate'] = "Ticket #%NUM% has been %ACTION% (%DESC%) {TRACK:%NUM%}";
?>