mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
initial commit
This commit is contained in:
144
html/messages2/formmail.php
Executable file
144
html/messages2/formmail.php
Executable file
@ -0,0 +1,144 @@
|
||||
<?php
|
||||
|
||||
$for = $_POST['for'];
|
||||
$name = $_POST['name'];
|
||||
$company = $_POST['company'];
|
||||
$phone = "(".$_POST['phone'].")".$_POST['phone-2']."-".$_POST['phone-3'];
|
||||
$ext = "ext. ".$_POST['ext'];
|
||||
$time_to_call = $_POST['time_to_call'];
|
||||
$mobile = "(".$_POST['mobile'].")".$_POST['mobile-2']."-".$_POST['mobile-3'];
|
||||
$time_to_call_mobile = $_POST['time_to_call_mobile'];
|
||||
$fax = "(".$_POST['fax'].")".$_POST['fax-2']."-".$_POST['fax-3'];
|
||||
$telephoned = $_POST['telephoned'];
|
||||
$came_to_see_you = $_POST['came_to_see_you'];
|
||||
$wants_to_see_you = $_POST['wants_to_see_you'];
|
||||
$returned_your_call = $_POST['returned_your_call'];
|
||||
$please_call = $_POST['please_call'];
|
||||
$will_call_again = $_POST['will_call_again'];
|
||||
$rush = $_POST['rush'];
|
||||
$special_attention = $_POST['special_attention'];
|
||||
$callers_message = $_POST['callers_message'];
|
||||
$signed_data = explode('||',$_POST['signed']);
|
||||
|
||||
//$signed = $_POST['signed'];
|
||||
//$from = $_POST['signed'];
|
||||
$signed = $signed_data[0];
|
||||
$from = $signed_data[0];
|
||||
$reply_to = $signed_data[1];
|
||||
|
||||
$date = "Time of call: ".date("F j, Y, g:i a");
|
||||
$time = date("F j, Y, g:i a");
|
||||
|
||||
if($ext == 'ext. ')
|
||||
$ext = '';
|
||||
else $ext = $ext;
|
||||
|
||||
if($time_to_call != '')
|
||||
$time_to_call = 'Time to call: '.$time_to_call;
|
||||
|
||||
if($mobile != '()-')
|
||||
$mobile = 'Mobile: '.$mobile;
|
||||
else $mobile = '';
|
||||
|
||||
if($time_to_call_mobile != '')
|
||||
$time_to_call_mobile = 'Time to call mobile: '.$time_to_call_mobile;
|
||||
|
||||
if($fax != '()-')
|
||||
$fax = 'Fax: '.$fax;
|
||||
else $fax = '';
|
||||
|
||||
if($telephoned == 'on')
|
||||
$telephoned = 'Telephoned';
|
||||
else $telephoned = '';
|
||||
|
||||
if($came_to_see_you == 'on')
|
||||
$came_to_see_you = 'Came to see you';
|
||||
else $came_to_see_you = '';
|
||||
|
||||
if($wants_to_see_you == 'on')
|
||||
$wants_to_see_you = 'Wants to see you';
|
||||
else $wants_to_see_you = '';
|
||||
|
||||
if($returned_your_call == 'on')
|
||||
$returned_your_call = 'Returned your call';
|
||||
else $returned_your_call = '';
|
||||
|
||||
if($please_call == 'on')
|
||||
$please_call = 'Please call';
|
||||
else $please_call = '';
|
||||
|
||||
if($will_call_again == 'on')
|
||||
$will_call_again = 'Will call again';
|
||||
else $will_call_again = '';
|
||||
|
||||
if($rush == 'on')
|
||||
$rush = 'Rush';
|
||||
else $rush = '';
|
||||
|
||||
if($special_attention == 'on')
|
||||
$special_attention = 'Special Attention';
|
||||
else $special_attention = '';
|
||||
|
||||
if($callers_message != '')
|
||||
$callers_message = 'Message: '.$callers_message;
|
||||
|
||||
if($signed != '')
|
||||
$signed = 'Signed: '.$signed;
|
||||
|
||||
$body = "$date
|
||||
|
||||
Name: $name
|
||||
Company: $company
|
||||
|
||||
Phone: $phone $ext
|
||||
|
||||
";
|
||||
|
||||
if($time_to_call != '')
|
||||
$body .= $time_to_call;
|
||||
|
||||
if($mobile != '')
|
||||
$body .= $mobile;
|
||||
if($time_to_call_mobile != '')
|
||||
$body .= $time_to_call_mobile;
|
||||
|
||||
if($fax != '')
|
||||
$body .= $fax;
|
||||
|
||||
if($telephoned != '' || $came_to_see_you != '' || $wants_to_see_you != '' || $returned_your_call != '' || $please_call != '' || $will_call_again != '' || $rush != '' || $special_attention != '')
|
||||
$body .= "
|
||||
|
||||
Please:
|
||||
";
|
||||
|
||||
if($telephoned != '')
|
||||
$body .= $telephoned."\n";
|
||||
if($came_to_see_you != '')
|
||||
$body .= $came_to_see_you."\n";
|
||||
if($wants_to_see_you != '')
|
||||
$body .= $wants_to_see_you."\n";
|
||||
if($returned_your_call != '')
|
||||
$body .= $returned_your_call."\n";
|
||||
if($please_call != '')
|
||||
$body .= $please_call."\n";
|
||||
if($will_call_again != '')
|
||||
$body .= $will_call_again."\n";
|
||||
if($rush != '')
|
||||
$body .= $rush."\n";
|
||||
if($special_attention != '')
|
||||
$body .= $special_attention."\n";
|
||||
|
||||
$body .= "
|
||||
|
||||
$callers_message
|
||||
|
||||
$signed";
|
||||
|
||||
$subject = "Important Message From " . $name ." - ". $time;
|
||||
|
||||
//mail($for, $subject, $body, 'from: messages@atlanticbiomedical.com');
|
||||
mail($for, $subject, $body, "from: $reply_to");
|
||||
header('Location: /messages/index.php');
|
||||
?>
|
||||
|
||||
<body onload="window.close();"></body>
|
Reference in New Issue
Block a user