SmsTemplate.php
1.05 KB
<?php
define('SMS_NOTCONTACTED',1);
define('SMS_THANKYOU',2);
$smsContactedSubdispositionsArr = array ('Contacted');
$smsNotContactedSubdispositionsArr = array (
'NC - Customer Traveling / Abroad',
'NC - Customer in Meeting',
'NC - Ringing / No response',
'NC - Not Reachable',
'NC - Switched off',
'NC - Third Party'
);
$smsTemplatesArr = array(
//SMS_NOTCONTACTED => "Dear Customer,Your Virtual Relationship Manager #name# from HDFC Bank tried reaching you. Kindly call #number# for all your banking and financial needs",
SMS_NOTCONTACTED =>"Dear Customer, Your Virtual RM #name# from HDFC Bank tried reaching you. Kindly call 022#number# for all your banking and financial needs.",
//SMS_THANKYOU =>"Thank you for speaking to your VirtualRM on #date# . Now also access your account 24/7 via NetBanking/MobileBanking. Download MobileBanking App: bit.ly/2ajTksK"
SMS_THANKYOU =>"Thank you for speaking to your Virtual RM on #date#. Now also access your account 24/7 via Net / Mobile Banking. Download Mobile App: bit.ly/2ajTksK"
);
?>