You are not logged in.
Pages: 1
Hi,
Is there any way to customise the emails send out, so that that last "follow-up" is put at the top of the email, rather than users having to scroll down to the list of follow-up at the bottom. The last follow-up is usually the only thing of interest in the emails..
GLPI 0.83.91/CENTOS5 - OCS 1.01/Win2003
Offline
function textFollowups in tracking.class.php :
line 485
$query = "SELECT * FROM glpi_followups WHERE tracking = '".$this->fields["ID"]."' AND private = '0' ORDER by date DESC";
replace with
$query = "SELECT * FROM glpi_followups WHERE tracking = '".$this->fields["ID"]."' AND private = '0' ORDER by date ASC";
Xavier Caillaud
Blog GLPI Infotel
Offline
On the same subject, is it possible to add our own text to the email? I'd like it to say something a bit more readable for our end-users.
Many thanks/Merci,
Liz
Offline
Hi - not quite what I was looking for, at the moment it gives the email as: (eg)
--------
URL: http://server/etc
Description of the ticket
Author:
Dates:
Request Source:
Status: (etc)
Tickets already done: 99
[date]
author: adrian marsh
Contents:
THIS IS THE MESSAGE
--------
What I want instead:
--------
URL: http://someurls
THIS IS THE MESSAGE
Description of the ticket
Author: Adrian Marsh
Begin Date: asa
etc.etc..
--------
GLPI 0.83.91/CENTOS5 - OCS 1.01/Win2003
Offline
Pages: 1