| Author |
Message |
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 08/03/2010 07:15:47
|
nrybacki
SysAider
Joined: 22/02/2010
Messages: 17
Location: Harrisburg, PA
Offline
|
I would like to customize the email sent to a contact on receipt of their new emailed ticket. Can I vary the text based on the Category assigned to the incoming email/ticket? For example, if the category assigned to the email is customer service, the response will be different than that to an email assigned to the Technology category.
Thanks for your help.
Nancy
|
Thanks much, Nancy |
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 12/03/2010 09:01:18
|
Ori
SysAid Customer Relations

Joined: 17/04/2008
Messages: 293
Location: Israel
Offline
|
Hello nrybacki ,
You can define multiple notifications based on the category. Let me give you an example. You can set up the notification be like this.
#if( ${Category} && ${Category}=="A" ) - If category is A, then show title, description and status
Title: ${Title}
Description: ${Description}
Status: ${Status}
#elseif( ${Category} && ${Category}=="B" ) - If category is B, then show status notification.
${StatusNotification}
#else - Else, show only title
Title: ${Title}
#end - close the statement.
I hope i make myself clear as possible.
Enjoy
|
SysAid support. |
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 12/03/2010 09:13:33
|
nrybacki
SysAider
Joined: 22/02/2010
Messages: 17
Location: Harrisburg, PA
Offline
|
Thanks, Ori. I was on the right track after all. But I want to do an AND where if the Status is New AND the Category is A, then send "this message." Every time I tried to construct this logic, the email body ended up blank!
Thanks again.
|
Thanks much, Nancy |
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 22/03/2010 14:39:34
|
Ori
SysAid Customer Relations

Joined: 17/04/2008
Messages: 293
Location: Israel
Offline
|
To do an If and AND statement, please use this :
#if( ${Category} && ${Category}=="A" && ${Status}=="New" )
Replace A with the desired category..
Hope this helps...
|
SysAid support. |
|
|