configuration of back end scripts and Dispo Email sending Added agc/dispo_send_email.php script to be used with the Dispo Call URL option in campaigns and in-groups. git-svn-id: svn://192.168.202.10@2368 3d104415-ff17-0410-8863-d5cf3c621b8a
515 lines
26 KiB
PHP
515 lines
26 KiB
PHP
<?php
|
|
# dispo_send_email.php
|
|
#
|
|
# Copyright (C) 2015 Matt Florell <vicidial@gmail.com> LICENSE: AGPLv2
|
|
#
|
|
# This script is designed to be used in the "Dispo URL" field of a campaign
|
|
# or in-group. It will send out an email to a fixed email address as defined
|
|
# in a Settings Container as defined in the Admin web interface
|
|
#
|
|
# This script is part of the API group and any modifications of data are
|
|
# logged to the vicidial_api_log table.
|
|
#
|
|
# Example of what to put in the Dispo URL field:
|
|
# VARhttp://192.168.1.1/agc/dispo_send_email.php?container_id=TEST_CONTAINER&lead_id=--A--lead_id--B--&call_id=--A--call_id--B--&dispo=--A--dispo--B--&user=--A--user--B--&pass=--A--pass--B--&sale_status=SALE---SSALE---XSALE&log_to_file=1
|
|
#
|
|
# Definable Fields: (other fields should be left as they are)
|
|
# - log_to_file - (0,1) if set to 1, will create a log file in the agc directory
|
|
# - sale_status - (SALE---XSALE) a triple-dash "---" delimited list of the statuses that are to be moved
|
|
# - container_id - (999,etc...) the Settings Container ID that you want the phone number to be inserted into
|
|
#
|
|
# CHANGES
|
|
# 150806-1424 - First Build
|
|
#
|
|
|
|
$api_script = 'send_email';
|
|
|
|
header ("Content-type: text/html; charset=utf-8");
|
|
|
|
require_once("dbconnect_mysqli.php");
|
|
require_once("functions.php");
|
|
|
|
$filedate = date("Ymd");
|
|
$filetime = date("H:i:s");
|
|
$IP = getenv ("REMOTE_ADDR");
|
|
$BR = getenv ("HTTP_USER_AGENT");
|
|
|
|
$PHP_AUTH_USER=$_SERVER['PHP_AUTH_USER'];
|
|
$PHP_AUTH_PW=$_SERVER['PHP_AUTH_PW'];
|
|
$PHP_SELF=$_SERVER['PHP_SELF'];
|
|
if (isset($_GET["call_id"])) {$call_id=$_GET["call_id"];}
|
|
elseif (isset($_POST["call_id"])) {$call_id=$_POST["call_id"];}
|
|
if (isset($_GET["lead_id"])) {$lead_id=$_GET["lead_id"];}
|
|
elseif (isset($_POST["lead_id"])) {$lead_id=$_POST["lead_id"];}
|
|
if (isset($_GET["sale_status"])) {$sale_status=$_GET["sale_status"];}
|
|
elseif (isset($_POST["sale_status"])) {$sale_status=$_POST["sale_status"];}
|
|
if (isset($_GET["dispo"])) {$dispo=$_GET["dispo"];}
|
|
elseif (isset($_POST["dispo"])) {$dispo=$_POST["dispo"];}
|
|
if (isset($_GET["container_id"])) {$container_id=$_GET["container_id"];}
|
|
elseif (isset($_POST["container_id"])) {$container_id=$_POST["container_id"];}
|
|
if (isset($_GET["user"])) {$user=$_GET["user"];}
|
|
elseif (isset($_POST["user"])) {$user=$_POST["user"];}
|
|
if (isset($_GET["pass"])) {$pass=$_GET["pass"];}
|
|
elseif (isset($_POST["pass"])) {$pass=$_POST["pass"];}
|
|
if (isset($_GET["DB"])) {$DB=$_GET["DB"];}
|
|
elseif (isset($_POST["DB"])) {$DB=$_POST["DB"];}
|
|
if (isset($_GET["log_to_file"])) {$log_to_file=$_GET["log_to_file"];}
|
|
elseif (isset($_POST["log_to_file"])) {$log_to_file=$_POST["log_to_file"];}
|
|
|
|
|
|
#$DB = '1'; # DEBUG override
|
|
$US = '_';
|
|
$TD = '---';
|
|
$STARTtime = date("U");
|
|
$NOW_TIME = date("Y-m-d H:i:s");
|
|
$sale_status = "$TD$sale_status$TD";
|
|
$search_value='';
|
|
$match_found=0;
|
|
$k=0;
|
|
|
|
$user=preg_replace("/\'|\"|\\\\|;| /","",$user);
|
|
$pass=preg_replace("/\'|\"|\\\\|;| /","",$pass);
|
|
|
|
#############################################
|
|
##### START SYSTEM_SETTINGS AND USER LANGUAGE LOOKUP #####
|
|
$VUselected_language = '';
|
|
$stmt="SELECT selected_language from vicidial_users where user='$user';";
|
|
if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'00XXX',$user,$server_ip,$session_name,$one_mysql_log);}
|
|
$sl_ct = mysqli_num_rows($rslt);
|
|
if ($sl_ct > 0)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$VUselected_language = $row[0];
|
|
}
|
|
|
|
$stmt = "SELECT use_non_latin,enable_languages,language_method FROM system_settings;";
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'02001',$user,$server_ip,$session_name,$one_mysql_log);}
|
|
if ($DB) {echo "$stmt\n";}
|
|
$qm_conf_ct = mysqli_num_rows($rslt);
|
|
if ($qm_conf_ct > 0)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$non_latin = $row[0];
|
|
$SSenable_languages = $row[1];
|
|
$SSlanguage_method = $row[2];
|
|
}
|
|
##### END SETTINGS LOOKUP #####
|
|
###########################################
|
|
|
|
if ($non_latin < 1)
|
|
{
|
|
$user=preg_replace("/[^-_0-9a-zA-Z]/","",$user);
|
|
}
|
|
|
|
if ($DB>0) {echo "$lead_id|$container_id|$call_id|$sale_status|$dispo|$new_status|$user|$pass|$DB|$log_to_file|\n";}
|
|
|
|
if (preg_match("/$TD$dispo$TD/",$sale_status))
|
|
{$match_found=1;}
|
|
|
|
if ($match_found > 0)
|
|
{
|
|
if ($non_latin < 1)
|
|
{
|
|
$user=preg_replace("/[^-_0-9a-zA-Z]/","",$user);
|
|
$pass=preg_replace("/[^-_0-9a-zA-Z]/","",$pass);
|
|
}
|
|
|
|
$session_name = preg_replace("/\'|\"|\\\\|;/","",$session_name);
|
|
$server_ip = preg_replace("/\'|\"|\\\\|;/","",$server_ip);
|
|
|
|
if (preg_match("/NOAGENTURL/",$user))
|
|
{
|
|
$PADlead_id = sprintf("%010s", $lead_id);
|
|
if ( (strlen($pass) > 15) and (preg_match("/$PADlead_id$/",$pass)) )
|
|
{
|
|
$four_hours_ago = date("Y-m-d H:i:s", mktime(date("H")-4,date("i"),date("s"),date("m"),date("d"),date("Y")));
|
|
|
|
$stmt="SELECT count(*) from vicidial_log_extended where caller_code='$pass' and call_date > \"$four_hours_ago\";";
|
|
if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
$row=mysqli_fetch_row($rslt);
|
|
$authlive=$row[0];
|
|
$auth=$row[0];
|
|
if ($authlive < 1)
|
|
{
|
|
echo _QXZ("Call Not Found:")." 2|$user|$pass|$authlive|\n";
|
|
exit;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
echo _QXZ("Invalid Call ID:")." 1|$user|$pass|$PADlead_id|\n";
|
|
exit;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$auth=0;
|
|
$auth_message = user_authorization($user,$pass,'',0,0,0);
|
|
if ($auth_message == 'GOOD')
|
|
{$auth=1;}
|
|
|
|
$stmt="SELECT count(*) from vicidial_live_agents where user='$user';";
|
|
if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
$row=mysqli_fetch_row($rslt);
|
|
$authlive=$row[0];
|
|
}
|
|
|
|
if ( (strlen($user)<2) or (strlen($pass)<2) or ($auth==0) or ($authlive==0))
|
|
{
|
|
echo _QXZ("Invalid Username/Password:")." |$user|$pass|$auth|$authlive|$auth_message|\n";
|
|
exit;
|
|
}
|
|
|
|
if ( (strlen($lead_id) > 0) and (strlen($container_id) > 1) )
|
|
{
|
|
$search_count=0;
|
|
$stmt = "SELECT count(*) FROM vicidial_settings_containers where container_id='$container_id';";
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
if ($DB) {echo "$stmt\n";}
|
|
$sc_ct = mysqli_num_rows($rslt);
|
|
if ($sc_ct > 0)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$SC_count = $row[0];
|
|
}
|
|
|
|
if ($SC_count > 0)
|
|
{
|
|
$stmt = "SELECT container_entry FROM vicidial_settings_containers where container_id='$container_id';";
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'00XXX',$user,$server_ip,$session_name,$one_mysql_log);}
|
|
if ($DB) {echo "$stmt\n";}
|
|
$sc_ct = mysqli_num_rows($rslt);
|
|
if ($sc_ct > 0)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$container_entry = $row[0];
|
|
$container_ARY = explode("\n",$container_entry);
|
|
$email_body_gather=0;
|
|
$p=0;
|
|
$container_ct = count($container_ARY);
|
|
while ($p <= $container_ct)
|
|
{
|
|
$line = $container_ARY[$p];
|
|
if ($email_body_gather < 1)
|
|
{
|
|
$line = preg_replace("/>|\n|\r|\t|\#.*|;.*/",'',$line);
|
|
if (preg_match("/^email_to/",$line))
|
|
{$email_to = $line; $email_to = trim(preg_replace("/.*=/",'',$email_to));}
|
|
if (preg_match("/^email_from/",$line))
|
|
{$email_from = $line; $email_from = trim(preg_replace("/.*=/",'',$email_from));}
|
|
if (preg_match("/^email_subject/",$line))
|
|
{$email_subject = $line; $email_subject = trim(preg_replace("/.*=/",'',$email_subject));}
|
|
if (preg_match("/^email_body_begin/",$line))
|
|
{$email_body = $line; $email_body = trim(preg_replace("/.*=/",'',$email_body)) . "\n"; $email_body_gather++;}
|
|
}
|
|
else
|
|
{
|
|
if (preg_match("/^email_body_end/",$line))
|
|
{$email_body_gather=0;}
|
|
else
|
|
{$email_body .= $line;}
|
|
}
|
|
$p++;
|
|
}
|
|
|
|
if ( (strlen($email_to) > 5) and (strlen($email_from) > 5) and (strlen($email_subject) > 1) and (strlen($email_body) > 1) )
|
|
{
|
|
if ( (preg_match('/--A--/i',$email_subject)) or (preg_match('/--A--/i',$email_body)) or (preg_match('/--A--/i',$email_to)) or (preg_match('/--A--/i',$email_from)) )
|
|
{
|
|
##### grab the data from vicidial_list for the lead_id
|
|
$stmt="SELECT lead_id,entry_date,modify_date,status,user,vendor_lead_code,source_id,list_id,gmt_offset_now,called_since_last_reset,phone_code,phone_number,title,first_name,middle_initial,last_name,address1,address2,address3,city,state,province,postal_code,country_code,gender,date_of_birth,alt_phone,email,security_phrase,comments,called_count,last_local_call_time,rank,owner,entry_list_id FROM vicidial_list where lead_id='$lead_id' LIMIT 1;";
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'00XXX',$user,$server_ip,$session_name,$one_mysql_log);}
|
|
if ($DB) {echo "$stmt\n";}
|
|
$list_lead_ct = mysqli_num_rows($rslt);
|
|
if ($list_lead_ct > 0)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$entry_date = urlencode(trim($row[1]));
|
|
$dispo = urlencode(trim($row[3]));
|
|
$tsr = urlencode(trim($row[4]));
|
|
$vendor_id = urlencode(trim($row[5]));
|
|
$vendor_lead_code = urlencode(trim($row[5]));
|
|
$source_id = urlencode(trim($row[6]));
|
|
$list_id = urlencode(trim($row[7]));
|
|
$gmt_offset_now = urlencode(trim($row[8]));
|
|
$phone_code = urlencode(trim($row[10]));
|
|
$phone_number = urlencode(trim($row[11]));
|
|
$title = urlencode(trim($row[12]));
|
|
$first_name = urlencode(trim($row[13]));
|
|
$middle_initial = urlencode(trim($row[14]));
|
|
$last_name = urlencode(trim($row[15]));
|
|
$address1 = urlencode(trim($row[16]));
|
|
$address2 = urlencode(trim($row[17]));
|
|
$address3 = urlencode(trim($row[18]));
|
|
$city = urlencode(trim($row[19]));
|
|
$state = urlencode(trim($row[20]));
|
|
$province = urlencode(trim($row[21]));
|
|
$postal_code = urlencode(trim($row[22]));
|
|
$country_code = urlencode(trim($row[23]));
|
|
$gender = urlencode(trim($row[24]));
|
|
$date_of_birth = urlencode(trim($row[25]));
|
|
$alt_phone = urlencode(trim($row[26]));
|
|
$email = urlencode(trim($row[27]));
|
|
$security_phrase = urlencode(trim($row[28]));
|
|
$comments = urlencode(trim($row[29]));
|
|
$called_count = urlencode(trim($row[30]));
|
|
$rank = urlencode(trim($row[32]));
|
|
$owner = urlencode(trim($row[33]));
|
|
$entry_list_id = urlencode(trim($row[34]));
|
|
}
|
|
|
|
if ( (preg_match('/list_name--B--|list_description--B--/i',$email_subject)) or (preg_match('/list_name--B--|list_description--B--/i',$email_body)) )
|
|
{
|
|
$stmt = "SELECT list_name,list_description from vicidial_lists where list_id='$list_id' limit 1;";
|
|
if ($DB) {echo "$stmt\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'00XXX',$user,$server_ip,$session_name,$one_mysql_log);}
|
|
$VL_ln_ct = mysqli_num_rows($rslt);
|
|
if ($VL_ln_ct > 0)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$list_name = urlencode(trim($row[0]));
|
|
$list_description = urlencode(trim($row[1]));
|
|
}
|
|
}
|
|
|
|
$stmt = "SELECT custom_one,custom_two,custom_three,custom_four,custom_five,full_name,user_group,email from vicidial_users where user='$user';";
|
|
if ($DB) {echo "$stmt\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'00XXX',$user,$server_ip,$session_name,$one_mysql_log);}
|
|
$VUC_ct = mysqli_num_rows($rslt);
|
|
if ($VUC_ct > 0)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$user_custom_one = urlencode(trim($row[0]));
|
|
$user_custom_two = urlencode(trim($row[1]));
|
|
$user_custom_three = urlencode(trim($row[2]));
|
|
$user_custom_four = urlencode(trim($row[3]));
|
|
$user_custom_five = urlencode(trim($row[4]));
|
|
$fullname = urlencode(trim($row[5]));
|
|
$user_group = urlencode(trim($row[6]));
|
|
$agent_email = urlencode(trim($row[7]));
|
|
}
|
|
}
|
|
|
|
### populate variables in email_subject
|
|
if (preg_match('/--A--/i',$email_subject))
|
|
{
|
|
$email_subject = preg_replace('/^VAR/','',$email_subject);
|
|
$email_subject = preg_replace('/--A--lead_id--B--/i',"$lead_id",$email_subject);
|
|
$email_subject = preg_replace('/--A--vendor_id--B--/i',"$vendor_id",$email_subject);
|
|
$email_subject = preg_replace('/--A--vendor_lead_code--B--/i',"$vendor_lead_code",$email_subject);
|
|
$email_subject = preg_replace('/--A--list_id--B--/i',"$list_id",$email_subject);
|
|
$email_subject = preg_replace('/--A--list_name--B--/i',"$list_name",$email_subject);
|
|
$email_subject = preg_replace('/--A--list_description--B--/i',"$list_description",$email_subject);
|
|
$email_subject = preg_replace('/--A--gmt_offset_now--B--/i',"$gmt_offset_now",$email_subject);
|
|
$email_subject = preg_replace('/--A--phone_code--B--/i',"$phone_code",$email_subject);
|
|
$email_subject = preg_replace('/--A--phone_number--B--/i',"$phone_number",$email_subject);
|
|
$email_subject = preg_replace('/--A--title--B--/i',"$title",$email_subject);
|
|
$email_subject = preg_replace('/--A--first_name--B--/i',"$first_name",$email_subject);
|
|
$email_subject = preg_replace('/--A--middle_initial--B--/i',"$middle_initial",$email_subject);
|
|
$email_subject = preg_replace('/--A--last_name--B--/i',"$last_name",$email_subject);
|
|
$email_subject = preg_replace('/--A--address1--B--/i',"$address1",$email_subject);
|
|
$email_subject = preg_replace('/--A--address2--B--/i',"$address2",$email_subject);
|
|
$email_subject = preg_replace('/--A--address3--B--/i',"$address3",$email_subject);
|
|
$email_subject = preg_replace('/--A--city--B--/i',"$city",$email_subject);
|
|
$email_subject = preg_replace('/--A--state--B--/i',"$state",$email_subject);
|
|
$email_subject = preg_replace('/--A--province--B--/i',"$province",$email_subject);
|
|
$email_subject = preg_replace('/--A--postal_code--B--/i',"$postal_code",$email_subject);
|
|
$email_subject = preg_replace('/--A--country_code--B--/i',"$country_code",$email_subject);
|
|
$email_subject = preg_replace('/--A--gender--B--/i',"$gender",$email_subject);
|
|
$email_subject = preg_replace('/--A--date_of_birth--B--/i',"$date_of_birth",$email_subject);
|
|
$email_subject = preg_replace('/--A--alt_phone--B--/i',"$alt_phone",$email_subject);
|
|
$email_subject = preg_replace('/--A--email--B--/i',"$email",$email_subject);
|
|
$email_subject = preg_replace('/--A--security_phrase--B--/i',"$security_phrase",$email_subject);
|
|
$email_subject = preg_replace('/--A--comments--B--/i',"$comments",$email_subject);
|
|
$email_subject = preg_replace('/--A--user--B--/i',"$user",$email_subject);
|
|
$email_subject = preg_replace('/--A--pass--B--/i',"$orig_pass",$email_subject);
|
|
$email_subject = preg_replace('/--A--original_phone_login--B--/i',"$original_phone_login",$email_subject);
|
|
$email_subject = preg_replace('/--A--phone_pass--B--/i',"$phone_pass",$email_subject);
|
|
$email_subject = preg_replace('/--A--fronter--B--/i',"$fronter",$email_subject);
|
|
$email_subject = preg_replace('/--A--closer--B--/i',"$user",$email_subject);
|
|
$email_subject = preg_replace('/--A--SQLdate--B--/i',"$NOW_TIME",$email_subject);
|
|
$email_subject = preg_replace('/--A--epoch--B--/i',"$epoch",$email_subject);
|
|
$email_subject = preg_replace('/--A--source_id--B--/i',"$source_id",$email_subject);
|
|
$email_subject = preg_replace('/--A--rank--B--/i',"$rank",$email_subject);
|
|
$email_subject = preg_replace('/--A--owner--B--/i',"$owner",$email_subject);
|
|
$email_subject = preg_replace('/--A--entry_list_id--B--/i',"$entry_list_id",$email_subject);
|
|
$email_subject = preg_replace('/--A--call_id--B--/i',urlencode(trim($call_id)),$email_subject);
|
|
$email_subject = preg_replace('/--A--entry_date--B--/i',"$entry_date",$email_subject);
|
|
$email_subject = preg_replace('/--A--fullname--B--/i',"$fullname",$email_subject);
|
|
$email_subject = preg_replace('/--A--user_custom_one--B--/i',"$user_custom_one",$email_subject);
|
|
$email_subject = preg_replace('/--A--user_custom_two--B--/i',"$user_custom_two",$email_subject);
|
|
$email_subject = preg_replace('/--A--user_custom_three--B--/i',"$user_custom_three",$email_subject);
|
|
$email_subject = preg_replace('/--A--user_custom_four--B--/i',"$user_custom_four",$email_subject);
|
|
$email_subject = preg_replace('/--A--user_custom_five--B--/i',"$user_custom_five",$email_subject);
|
|
$email_subject = preg_replace('/--A--user_group--B--/i',urlencode(trim($user_group)),$email_subject);
|
|
$email_subject = preg_replace('/--A--agent_email--B--/i',"$agent_email",$email_subject);
|
|
|
|
# not currently active
|
|
$email_subject = preg_replace('/--A--campaign--B--/i',"$campaign",$email_subject);
|
|
$email_subject = preg_replace('/--A--phone_login--B--/i',"$phone_login",$email_subject);
|
|
$email_subject = preg_replace('/--A--group--B--/i',"$VDADchannel_group",$email_subject);
|
|
$email_subject = preg_replace('/--A--channel_group--B--/i',"$VDADchannel_group",$email_subject);
|
|
$email_subject = preg_replace('/--A--uniqueid--B--/i',"$uniqueid",$email_subject);
|
|
$email_subject = preg_replace('/--A--customer_zap_channel--B--/i',"$customer_zap_channel",$email_subject);
|
|
$email_subject = preg_replace('/--A--customer_server_ip--B--/i',"$customer_server_ip",$email_subject);
|
|
$email_subject = preg_replace('/--A--server_ip--B--/i',"$server_ip",$email_subject);
|
|
$email_subject = preg_replace('/--A--SIPexten--B--/i',"$SIPexten",$email_subject);
|
|
$email_subject = preg_replace('/--A--session_id--B--/i',"$session_id",$email_subject);
|
|
$email_subject = preg_replace('/--A--phone--B--/i',"$phone",$email_subject);
|
|
$email_subject = preg_replace('/--A--parked_by--B--/i',"$parked_by",$email_subject);
|
|
$email_subject = preg_replace('/--A--camp_script--B--/i',"$camp_script",$email_subject);
|
|
$email_subject = preg_replace('/--A--in_script--B--/i',"$in_script",$email_subject);
|
|
$email_subject = preg_replace('/--A--dispo--B--/i',"$dispo",$email_subject);
|
|
$email_subject = preg_replace('/--A--dispo_name--B--/i',"$dispo_name",$email_subject);
|
|
$email_subject = preg_replace('/--A--dialed_number--B--/i',"$dialed_number",$email_subject);
|
|
$email_subject = preg_replace('/--A--dialed_label--B--/i',"$dialed_label",$email_subject);
|
|
$email_subject = preg_replace('/--A--talk_time--B--/i',"$talk_time",$email_subject);
|
|
$email_subject = preg_replace('/--A--talk_time_ms--B--/i',"$talk_time_ms",$email_subject);
|
|
$email_subject = preg_replace('/--A--talk_time_min--B--/i',"$talk_time_min",$email_subject);
|
|
$email_subject = preg_replace('/--A--agent_log_id--B--/i',"$CALL_agent_log_id",$email_subject);
|
|
$email_subject = preg_replace('/--A--did_id--B--/i',urlencode(trim($DID_id)),$email_subject);
|
|
$email_subject = preg_replace('/--A--did_extension--B--/i',urlencode(trim($DID_extension)),$email_subject);
|
|
$email_subject = preg_replace('/--A--did_pattern--B--/i',urlencode(trim($DID_pattern)),$email_subject);
|
|
$email_subject = preg_replace('/--A--did_description--B--/i',urlencode(trim($DID_description)),$email_subject);
|
|
$email_subject = preg_replace('/--A--closecallid--B--/i',urlencode(trim($INclosecallid)),$email_subject);
|
|
$email_subject = preg_replace('/--A--xfercallid--B--/i',urlencode(trim($INxfercallid)),$email_subject);
|
|
$email_subject = preg_replace('/--A--call_notes--B--/i',"$url_call_notes",$email_subject);
|
|
$email_subject = preg_replace('/--A--recording_id--B--/i',"$recording_id",$email_subject);
|
|
$email_subject = preg_replace('/--A--recording_filename--B--/i',"$recording_filename",$email_subject);
|
|
$email_subject = urldecode($email_subject);
|
|
}
|
|
|
|
### check for variables in email_body
|
|
if (preg_match('/--A--/i',$email_body))
|
|
{
|
|
$email_body = preg_replace('/^VAR/','',$email_body);
|
|
$email_body = preg_replace('/--A--lead_id--B--/i',"$lead_id",$email_body);
|
|
$email_body = preg_replace('/--A--vendor_id--B--/i',"$vendor_id",$email_body);
|
|
$email_body = preg_replace('/--A--vendor_lead_code--B--/i',"$vendor_lead_code",$email_body);
|
|
$email_body = preg_replace('/--A--list_id--B--/i',"$list_id",$email_body);
|
|
$email_body = preg_replace('/--A--list_name--B--/i',"$list_name",$email_body);
|
|
$email_body = preg_replace('/--A--list_description--B--/i',"$list_description",$email_body);
|
|
$email_body = preg_replace('/--A--gmt_offset_now--B--/i',"$gmt_offset_now",$email_body);
|
|
$email_body = preg_replace('/--A--phone_code--B--/i',"$phone_code",$email_body);
|
|
$email_body = preg_replace('/--A--phone_number--B--/i',"$phone_number",$email_body);
|
|
$email_body = preg_replace('/--A--title--B--/i',"$title",$email_body);
|
|
$email_body = preg_replace('/--A--first_name--B--/i',"$first_name",$email_body);
|
|
$email_body = preg_replace('/--A--middle_initial--B--/i',"$middle_initial",$email_body);
|
|
$email_body = preg_replace('/--A--last_name--B--/i',"$last_name",$email_body);
|
|
$email_body = preg_replace('/--A--address1--B--/i',"$address1",$email_body);
|
|
$email_body = preg_replace('/--A--address2--B--/i',"$address2",$email_body);
|
|
$email_body = preg_replace('/--A--address3--B--/i',"$address3",$email_body);
|
|
$email_body = preg_replace('/--A--city--B--/i',"$city",$email_body);
|
|
$email_body = preg_replace('/--A--state--B--/i',"$state",$email_body);
|
|
$email_body = preg_replace('/--A--province--B--/i',"$province",$email_body);
|
|
$email_body = preg_replace('/--A--postal_code--B--/i',"$postal_code",$email_body);
|
|
$email_body = preg_replace('/--A--country_code--B--/i',"$country_code",$email_body);
|
|
$email_body = preg_replace('/--A--gender--B--/i',"$gender",$email_body);
|
|
$email_body = preg_replace('/--A--date_of_birth--B--/i',"$date_of_birth",$email_body);
|
|
$email_body = preg_replace('/--A--alt_phone--B--/i',"$alt_phone",$email_body);
|
|
$email_body = preg_replace('/--A--email--B--/i',"$email",$email_body);
|
|
$email_body = preg_replace('/--A--security_phrase--B--/i',"$security_phrase",$email_body);
|
|
$email_body = preg_replace('/--A--comments--B--/i',"$comments",$email_body);
|
|
$email_body = preg_replace('/--A--user--B--/i',"$user",$email_body);
|
|
$email_body = preg_replace('/--A--pass--B--/i',"$orig_pass",$email_body);
|
|
$email_body = preg_replace('/--A--original_phone_login--B--/i',"$original_phone_login",$email_body);
|
|
$email_body = preg_replace('/--A--phone_pass--B--/i',"$phone_pass",$email_body);
|
|
$email_body = preg_replace('/--A--fronter--B--/i',"$fronter",$email_body);
|
|
$email_body = preg_replace('/--A--closer--B--/i',"$user",$email_body);
|
|
$email_body = preg_replace('/--A--SQLdate--B--/i',"$NOW_TIME",$email_body);
|
|
$email_body = preg_replace('/--A--epoch--B--/i',"$epoch",$email_body);
|
|
$email_body = preg_replace('/--A--source_id--B--/i',"$source_id",$email_body);
|
|
$email_body = preg_replace('/--A--rank--B--/i',"$rank",$email_body);
|
|
$email_body = preg_replace('/--A--owner--B--/i',"$owner",$email_body);
|
|
$email_body = preg_replace('/--A--entry_list_id--B--/i',"$entry_list_id",$email_body);
|
|
$email_body = preg_replace('/--A--call_id--B--/i',urlencode(trim($call_id)),$email_body);
|
|
$email_body = preg_replace('/--A--entry_date--B--/i',"$entry_date",$email_body);
|
|
$email_body = preg_replace('/--A--fullname--B--/i',"$fullname",$email_body);
|
|
$email_body = preg_replace('/--A--user_custom_one--B--/i',"$user_custom_one",$email_body);
|
|
$email_body = preg_replace('/--A--user_custom_two--B--/i',"$user_custom_two",$email_body);
|
|
$email_body = preg_replace('/--A--user_custom_three--B--/i',"$user_custom_three",$email_body);
|
|
$email_body = preg_replace('/--A--user_custom_four--B--/i',"$user_custom_four",$email_body);
|
|
$email_body = preg_replace('/--A--user_custom_five--B--/i',"$user_custom_five",$email_body);
|
|
$email_body = preg_replace('/--A--user_group--B--/i',urlencode(trim($user_group)),$email_body);
|
|
$email_body = preg_replace('/--A--agent_email--B--/i',"$agent_email",$email_body);
|
|
$email_body = urldecode($email_body);
|
|
}
|
|
|
|
### check for variables in email_to
|
|
if (preg_match('/--A--/i',$email_to))
|
|
{
|
|
$email_to = preg_replace('/^VAR/','',$email_to);
|
|
$email_to = preg_replace('/--A--email--B--/i',"$email",$email_to);
|
|
$email_to = preg_replace('/--A--customer_email--B--/i',"$email",$email_to);
|
|
$email_to = preg_replace('/--A--agent_email--B--/i',"$agent_email",$email_to);
|
|
$email_to = urldecode($email_to);
|
|
}
|
|
|
|
### check for variables in email_from
|
|
if (preg_match('/--A--/i',$email_from))
|
|
{
|
|
$email_from = preg_replace('/^VAR/','',$email_from);
|
|
$email_from = preg_replace('/--A--email--B--/i',"$email",$email_from);
|
|
$email_from = preg_replace('/--A--customer_email--B--/i',"$email",$email_from);
|
|
$email_from = preg_replace('/--A--agent_email--B--/i',"$agent_email",$email_from);
|
|
$email_from = urldecode($email_from);
|
|
}
|
|
|
|
##### sending email through PHP #####
|
|
mail("$email_to","$email_subject","$email_body", "From: $email_from");
|
|
|
|
$SQL_log = "$stmt|$stmtB|$CBaffected_rows|$email_from|$email_to|$email_subject|";
|
|
$SQL_log = preg_replace('/;/','',$SQL_log);
|
|
$SQL_log = addslashes($SQL_log);
|
|
$stmt="INSERT INTO vicidial_api_log set user='$user',agent_user='$user',function='dispo_send_email',value='$call_id',result='$affected_rows',result_reason='$container_id',source='vdc',data='$SQL_log',api_date='$NOW_TIME',api_script='$api_script';";
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
|
|
$MESSAGE = _QXZ("DONE: %1s match found, %2s email sent using %3s with %4s status",0,'',$SC_count,$affected_rows,$container_id,$dispo);
|
|
echo "$MESSAGE\n";
|
|
}
|
|
else
|
|
{
|
|
$MESSAGE = _QXZ("DONE: problem with settings %1s, not all required fields filled in",0,'',$container_id);
|
|
echo "$MESSAGE\n";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$MESSAGE = _QXZ("DONE: no settings container found %1s",0,'',$container_id);
|
|
echo "$MESSAGE\n";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$MESSAGE = _QXZ("DONE: no settings container found %1s",0,'',$container_id);
|
|
echo "$MESSAGE\n";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$MESSAGE = _QXZ("DONE: %1s or %2s are invalid",0,'',$lead_id,$container_id);
|
|
echo "$MESSAGE\n";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$MESSAGE = _QXZ("DONE: dispo is not a sale status: %1s",0,'',$dispo);
|
|
echo "$MESSAGE\n";
|
|
}
|
|
|
|
if ($log_to_file > 0)
|
|
{
|
|
$fp = fopen ("./send_email.txt", "a");
|
|
fwrite ($fp, "$NOW_TIME|$k|$lead_id|$call_id|$container_id|$sale_status|$dispo|$user|XXXX|$DB|$log_to_file|$MESSAGE|\n");
|
|
fclose($fp);
|
|
}
|