GO3email-backup-170222



We received your online application and you received a Guaranteed Offer through PersonalLoansAndCredit.com

WE NEED TO VERIFY YOUR INFORMATION TO COMPLETE THE PROCESS.

We partner with TransUnion (TM), one of the 3 major credit bureaus in the country.
The verification is free. No credit card required. No credit check is performed.

Please click the following link to verify now:

PersLns&Crdt/TransUnion/Verify

Please register with TransUnion(TM). When you receive their confirmation email, please send us the Order ID# which is located in the Subject line of the email. Our email address is info@PersonalLoansAndCredit.com or you can use the Contact Us link on this website.
That’s it. Once verified we will complete the process for you.

This offer expires in 24 hours and is only valid if you provide complete and accurate information

 

 

 
 
 
 

414 S. Service Rd, Suite 297, Patchogue, NY 11772
Click here to unsubscribe

EOT;

if(!empty($_SESSION)&&!empty($_SESSION[’email’])) {
global $wpdb;

$date = date(“Y-m-d H:i:s”);
$admin_email = get_option(‘admin_email’);
$name = $_SESSION[‘firstname’].” “.$_SESSION[‘lastname’];

// $crondata=array(
// ‘status’=>’pending’,
// ‘job’=>’send_six_hour_email’,
// ’email’=>$_SESSION[’email’]
// );
//$wpdb->insert(“wp_custom_crons”,$crondata,array(‘%s’,’%s’,’%s’));

if(!isset($_SESSION[‘sentEmail’])){
$wpdb->query(“INSERT INTO wp_customer (name, email, state, mail_status, status,admin_email,entrytime) VALUES (‘” . $name . “‘, ‘” . $_SESSION[’email’] . “‘, ‘” . $_SESSION[‘state’] . “‘, ‘0’,’1′,'” . $admin_email . “‘,'” . $date . “‘)”);
$crondata=array(
‘status’=>’pending’,
‘job’=>’send_48_hour_text’,
’email’=>$_SESSION[’email’],
‘phone’=>str_replace(“-“,””,$_SESSION[‘phone’])
);

$wpdb->insert(“wp_custom_crons”,$crondata,array(‘%s’,’%s’,’%s’,’%s’));

add_filter(‘wp_mail_content_type’, create_function(”, ‘return “text/html”; ‘));
wp_mail($to, $subject, $message);
$_SESSION[‘sentEmail’]=true;
}
}else{
wp_redirect( home_url() );
exit;
}
?>