Check Your Spam Inbox Reminder (add-on)
Posted: Wed Dec 04, 2013 5:40 am
Title: Check Your Spam Inbox Reminder (add-on)
Version: 1.0.0
Hesk Desk Version: 2.5.2
Languages: English, Spanish
Author: DJ Andre or MOB or (M.O.B. @ phpbb.com)
Email: (Just send me a PM)
Demo: (Sorry but it's a private site--but plan to put it on another site--will link when ready)
Download: N/A
Website: http://www.mixingonbeat.com/phpbb/viewforum.php?f=155
Description:
It will add a reminder to the ticket submitter to check their Spam Inbox in case they don't receive a response from your help desk team.
Screenshots:
English:

Spanish:

@Klemen:
If you wish to add this feature to Hesk Desk in the future, please go ahead, you have my consent. -- maybe you can give me a licensed version
Follow the directions below.
IMPORTANT: Please be sure to save your files and language files with encoding UTF-8 without BOM.
OPEN: submit_ticket.php
FIND:
REPLACE WITH:
For English language:
OPEN: language/en/text.php
FIND:
BEFORE, ADD:
For Spanish language:
OPEN: language/es/text.php
FIND:
BEFORE, ADD:
Version: 1.0.0
Hesk Desk Version: 2.5.2
Languages: English, Spanish
Author: DJ Andre or MOB or (M.O.B. @ phpbb.com)
Email: (Just send me a PM)
Demo: (Sorry but it's a private site--but plan to put it on another site--will link when ready)
Download: N/A
Website: http://www.mixingonbeat.com/phpbb/viewforum.php?f=155
Description:
It will add a reminder to the ticket submitter to check their Spam Inbox in case they don't receive a response from your help desk team.
Screenshots:
English:

Spanish:

@Klemen:
If you wish to add this feature to Hesk Desk in the future, please go ahead, you have my consent. -- maybe you can give me a licensed version

Follow the directions below.
IMPORTANT: Please be sure to save your files and language files with encoding UTF-8 without BOM.
OPEN: submit_ticket.php
FIND:
Code: Select all
// Show success message with link to ticket
hesk_show_success(
$hesklang['ticket_submitted'] . '<br /><br />' .
$hesklang['ticket_submitted_success'] . ': <b>' . $ticket['trackid'] . '</b><br /><br />
<a href="' . $hesk_settings['hesk_url'] . '/ticket.php?track=' . $ticket['trackid'] . '">' . $hesklang['view_your_ticket'] . '</a>'
);
Code: Select all
// Show success message with link to ticket
hesk_show_success(
$hesklang['ticket_submitted'] . '<br /><br />' .
$hesklang['ticket_submitted_success'] . ': <b>' . $ticket['trackid'] . '</b><br /><br />' .
$hesklang['spam_inbox'] . '<br /><br />
<a href="' . $hesk_settings['hesk_url'] . '/ticket.php?track=' . $ticket['trackid'] . '">' . $hesklang['view_your_ticket'] . '</a>'
);
OPEN: language/en/text.php
FIND:
Code: Select all
// DO NOT CHANGE BELOW
Code: Select all
// Check Your Spam Inbox Reminder (add-on)
$hesklang['spam_inbox']='<font color="#FF0000"><b>IMPORTANT!</b> In case you don\'t receive our replies, please make sure to check your <b>SPAM inbox</b>.<br />We recommend that you mark our replies as <b>NO SPAM</b>, this way, you won\'t have problems receiving our correspondence in the future.</font>';
OPEN: language/es/text.php
FIND:
Code: Select all
// DO NOT CHANGE BELOW
Code: Select all
// Check Your Spam Inbox Reminder (add-on)
$hesklang['spam_inbox']='<font color="#FF0000"><b>¡IMPORTANTE!</b> En caso de que usted no reciba nuestra respuesta, por favor asegúrese de revisar su bandeja de entrada <b>SPAM</b>.<br />Le recomendamos que anote nuestras respuestas como <b>NO SPAM</b>, de esta manera, no tenga más problemas para recibir nuestra correspondencia en el futuro.</font>';