Kayako logo

Kayako develops robust helpdesk software, live chat and real-time visitor monitoring software.
Kayako is trusted by more than 30,000 organizations, including a number of Fortune 500 companies and government institutions.
Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  (#1) Old
Scooby Offline
New Member
 
Posts: 13
Join Date: Oct 2006
Show cc adresses in ticket - 08-06-2009, 10:13 AM

We would love to see the cc adres when you open a ticket. Now you have to click reply or the edit tab to see who else got the mail, other than the support adres.

Is it possible to show the cc adres in the ticket?

Kind regards,

Mark
   
Reply With Quote
  (#2) Old
supportskins Offline
Senior Member
 
supportskins's Avatar
 
Posts: 5,590
Join Date: Aug 2006
Location: Mumbai, India
08-06-2009, 10:45 AM

No not at the moment. However I agree that it is easier to see if the email has been cced or not. +1 for this.



Professional and Affordable Kayako Skins - Specialists in Kayako Skinning & Customization - Professional Paid Support
Our Skins and Services - http://www.supportskins.com/store/ - NEW SKIN ADDED!!
SupportSkins.com - http://www.supportskins.com/
   
Reply With Quote
  (#3) Old
Scooby Offline
New Member
 
Posts: 13
Join Date: Oct 2006
18-08-2009, 08:47 AM

I would say +2 ;-)
   
Reply With Quote
  (#4) Old
trrunde Offline
New Member
 
Posts: 22
Join Date: Feb 2010
19-07-2010, 08:34 PM

I made a change in the source code the file staff_viewticket.php and added this:

Code:
                        $_recipients = $_ticketobj->getRecipients();
                                        foreach ($_recipients as $key=>$val)
                {
                        if ($val["recipienttype"] == RECIPIENT_THIRDPARTY)
                        {
                                $type = "Third party user: ";
                        } else if ($val["recipienttype"] == RECIPIENT_CCUSER) {
                                $type = "CC User: ";
                        } else if ($val["recipienttype"] == RECIPIENT_BCCUSER) {
                                $type = "BCC User: ";
                        }
                        echo "<br />" . $type. $val["email"];

                }
                }
this was added under this line:
echo sprintf($_SWIFT["language"]["tremail"], htmlspecialchars($val["email"]));
   
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
3.30.02 STABLE Released Ryan Lederman News and Announcements 0 13-08-2008 09:47 PM
3.30.00 Release Candidate 1 Ryan Lederman Archive 25 05-08-2008 10:37 PM
Ticket view -> If user is unvalidated, show in a ticket raised by user NC Software Tickets 2 29-04-2008 07:56 PM
New Build: 3.10.02 STABLE Ryan Lederman News and Announcements 0 05-03-2007 08:53 PM



Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83