"0") { $result = mysql_query($sql); while ($getthis <= $getrow) { $baseid = mysql_result($result,$getthis,"baseid"); $id = mysql_result($result,$getthis,"id"); $first = mysql_result($result,$getthis,"first_name"); $last = mysql_result($result,$getthis,"last_name"); $account_type = mysql_result($result,$getthis,"account_type"); $agreement_date = mysql_result($result,$getthis,"agreement_date"); $fee_paid = mysql_result($result,$getthis,"fee_paid"); $last_value = mysql_result($result,$getthis,"last_value"); $next_bill = mysql_result($result,$getthis,"next_bill"); $received = mysql_result($result,$getthis,"received"); $account_number = mysql_result($result,$getthis,"account_number"); $current_bill = mysql_result($result,$getthis,"current_bill"); $account_name = mysql_result($result,$getthis,"account_name"); $solicitor = mysql_result($result,$getthis,"solicitor"); $eq = mysql_result($result,$getthis,"eq"); # echo "ACT: $account_number $first $last
"; $account_number = ereg_replace("[^A-Za-z0-9]", "", $account_number); $getthis++; # I NOW HAVE THE ACT NUMBER AND ALL THE CLIENT DATA, NEXT LETS SEE IF THEY HAVE MONEY TO INVEST. # NOW YOU MUST HAVE A | DELIMITED FILE WITH 6 columns 1 = act #, 2= | 3 = shares to buy 4=| 5 = rounded dollars to buy 6 = | in the first 6 columns # you do this by creating your memoranda as normal but having the first 6 hidden columns have a formula that copies the aropriate data # to each of them so that you endup with ACT NUM then | then SHARES TO BUY then | then ROUNDED DOWN DOLLARS (to nearest 100) to buy thyen | # then copy those 6 columns (starting at the row of the viry first act number) to a plain text file. (the data file) $lines = file($datafile); $lastline= count($lines); # echo "LAST LINE $lastline
";; foreach ($lines as $line_num => $line) { $line = ereg_replace("[^A-Za-z0-9 |]", "", $line); $pieces = explode("|", $line); #echo $pieces[0]; // piece1 #echo "
SYMBOL!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; #echo $pieces[1]; // piece2 #echo "
"; #echo $pieces[2]; // piece2 #echo "
"; if($pieces[0] == $account_number && $pieces[2] > 0) { if ($currentclnum != $id) { #SEND THE EMAIL TO THE PREVIOUSE CLIENT if ($currentclnum != "0") { echo "EMAILING client $currentlname This
$store

"; } $account_show = $account_number; $account_show = substr($account_show, 5, 4); #echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
"; #echo $account_show; #echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
"; $account_show = "#####$account_show"; $part3=number_format($pieces[3]); $store = ""; $br="\r\n"; $br2="
"; $store = "In account number $account_number ($account_name) buy $pieces[2] shares of $pieces[1] for about $$part3 dollars assuming a price of $$cprice (this is an actively traded security and your purchase price may vary). This will be a limit order at $$tprice therefore we will not buy shares if the share price is above $$tprice."; $store = "$store$br$br2$br2"; $currentclnum = $id; $currentlname = $last; //echo $store; //echo "NEW!!!!!!!!!!!!!!!!!
"; } else { $part3=number_format($pieces[3]); $br="\r\n"; $store = "$store In account number $account_number ($account_name) buy $pieces[2] shares of $pieces[1] for about $$part3 dollars assuming a price of $$cprice (this is an actively traded security and your purchase price may vary). This will be a limit order at $$tprice therefore we will not buy shares if the share price is above $$tprice."; $store = "$store$br$br2$br2"; //echo $store; //echo "SAME!!!!!!!!!!!!!!!!!
"; } # echo "BUY $pieces[2] shares for about $$part3 dollars

"; } # end if($pieces[0] == $account_number) } # end foreach ($lines as $line_num => $line) } # wend of while ($getthis <= $getrow) echo "EMAILING client $currentlname This
$store

"; } else { echo "No records found"; } # end of main loop } # end of if ($control == 1) ?>

YOU MUST HAVE A | DELIMITED FILE WITH 8 columns 1 = act #, 2= | 3 symbol 4= | 5= shares to buy 6=| 7 = rounded dollars to buy 8 = | in the first 8 columns

IT MUST!!!! BE SORTED BY ACT NUMBER!!!!

You do this by creating your memoranda as normal but having the first 8 hidden columns have a formula that copies the aropriate data to each of them so that you endup with ACT NUM then | symbol then | then SHARES TO BUY then | then ROUNDED DOWN DOLLARS (to nearest 100) to buy then |. Then copy those 8 columns (starting at the row of the very first act number) to a plain text file. (the data file)

Next create a text file with the body of your email using the appropriate merge fields (i e \$first \$last ect).

These two needed files MUST be located in the investtowin public_html directory

Enter the EXACT name of the account data file (including.txt)......
Enter the EXACT name of the email html/text file (including.htm)
Enter the subject line for the email
Enter the current price you want to quote for the stock
Enter the LIMIT price you want to quote for the stock

"; } #end if($noscreen != "1") if ($noscreen == "1") { echo"


Ready to send email.
"; } } else { # else of submit 2 echo "SENDING EMAILS

"; $store = ""; $currentclnum = 0; $currentlname = ""; include("header.inc"); $eq="y"; $currentrecord=1; $newnumrows="0"; $getthis=0; $sql = "SELECT * FROM services WHERE eq LIKE '$eq' order by id"; $result = mysql_query($sql); $newnumrows = MYSQL_NUMROWS($result); $getrow = ($newnumrows - 1); # echo $newnumrows; if ($newnumrows > "0") { $result = mysql_query($sql); while ($getthis <= $getrow) { $baseid = mysql_result($result,$getthis,"baseid"); $id = mysql_result($result,$getthis,"id"); $first = mysql_result($result,$getthis,"first_name"); $last = mysql_result($result,$getthis,"last_name"); $account_type = mysql_result($result,$getthis,"account_type"); $agreement_date = mysql_result($result,$getthis,"agreement_date"); $fee_paid = mysql_result($result,$getthis,"fee_paid"); $last_value = mysql_result($result,$getthis,"last_value"); $next_bill = mysql_result($result,$getthis,"next_bill"); $received = mysql_result($result,$getthis,"received"); $account_number = mysql_result($result,$getthis,"account_number"); $current_bill = mysql_result($result,$getthis,"current_bill"); $account_name = mysql_result($result,$getthis,"account_name"); $solicitor = mysql_result($result,$getthis,"solicitor"); $eq = mysql_result($result,$getthis,"eq"); # echo "ACT: $account_number $first $last
"; $account_number = ereg_replace("[^A-Za-z0-9]", "", $account_number); $getthis++; # I NOW HAVE THE ACT NUMBER AND ALL THE CLIENT DATA, NEXT LETS SEE IF THEY HAVE MONEY TO INVEST. # NOW YOU MUST HAVE A | DELIMITED FILE WITH 6 columns 1 = act #, 2= | 3 = shares to buy 4=| 5 = rounded dollars to buy 6 = | in the first 6 columns # you do this by creating your memoranda as normal but having the first 6 hidden columns have a formula that copies the aropriate data # to each of them so that you endup with ACT NUM then | then SHARES TO BUY then | then ROUNDED DOWN DOLLARS (to nearest 100) to buy thyen | # then copy those 6 columns (starting at the row of the viry first act number) to a plain text file. (the data file) $lines = file($datafile); $lastline= count($lines); # echo "LAST LINE $lastline
";; foreach ($lines as $line_num => $line) { $line = ereg_replace("[^A-Za-z0-9 |]", "", $line); $pieces = explode("|", $line); #echo $pieces[0]; // piece1 #echo "
"; #echo $pieces[1]; // piece2 #echo "
"; #echo $pieces[2]; // piece2 #echo "
"; if($pieces[0] == $account_number && $pieces[2] > 0) { if ($currentclnum != $id) { #SEND THE EMAIL TO THE PREVIOUSE CLIENT if ($currentclnum != "0") { # NOW OPEN THE CLIENT RECORD AND GET CL FIRST CL LAST CL FFISRT AND ALL EMAILS> $sql2 = "SELECT * FROM client WHERE id LIKE $currentclnum"; $result2 = mysql_query($sql2); $getthis2 = "0"; $id2 = mysql_result($result2,$getthis2,"id"); $first2 = mysql_result($result2,$getthis2,"first_name"); $last2 = mysql_result($result2,$getthis2,"last_name"); $marital2 = mysql_result($result2,$getthis2,"marital"); $spouse_first2 = mysql_result($result2,$getthis2,"spouse_first"); $spouse_last2 = mysql_result($result2,$getthis2,"spouse_last"); $home_phone2 = mysql_result($result2,$getthis2,"home_phone"); $bus_phone2 = mysql_result($result2,$getthis2,"bus_phone"); $spouse_bus_phone2 = mysql_result($result2,$getthis2,"spouse_bus_phone"); $cellphone2 = mysql_result($result2,$getthis2,"cellphone"); $spouse_cell2 = mysql_result($result2,$getthis2,"spouse_cell"); $pref_email2 = mysql_result($result2,$getthis2,"pref_email"); $email2 = mysql_result($result2,$getthis2,"email"); $spouse_email2 = mysql_result($result2,$getthis2,"spouse_email"); $busemail2 = mysql_result($result2,$getthis2,"busemail"); $spouse_busemail2 = mysql_result($result2,$getthis2,"spouse_busemail"); if ($marital2 == "m" or $marital2 == "M") { $and2="and"; } else { $and2=""; $spouse_first2=""; } # echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

"; # echo $pref_email2; # echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

"; if ($pref_email2 == "") { echo "

$first2 $last2 has no preferred email, must be called.

"; $cnt_file = "./NoEmail$today.txt"; $tmpfile = fopen($cnt_file,"a"); $fp = fwrite($tmpfile,"$first2 $last2 H: $home_phone2 C: $cellphone2 B: $bus_phone2 SC: $spouse_cell2 SB: $spouse_bus_phone2 $br"); fclose($tmpfile); } # -=-=-=- PHP FORM VARIABLES (add as many as you would like) $name = "$first2 $and2 $spouse_first2 $last2"; $email = $pref_email2; # -=-=-=- MIME BOUNDARY $mime_boundary = "----Investtowin----".md5(time()); # -=-=-=- MAIL HEADERS #$to = 'aidan@example.com' . ', '; // note the comma #$to .= 'wez@example.com'; if ($email2 == $pref_email2) { $email2 = ""; } else { if ($email2 != "") { $email2 = " , $email2"; } } if ($spouse_email2 == $pref_email2) { $spouse_email2 = ""; } else { if ($spouse_email2 != "") { $spouse_email2 = " , $spouse_email2"; } } if ($busemail2 == $pref_email2) { $busemail2 = ""; } else { if ($busemail2 != "") { $busemail2 = " , $busemail2"; } } if ($spouse_busemail2 == $pref_email2) { $spouse_busemail2 = ""; } else { if($spouse_busemail2 != "") { $spouse_busemail2 = " , $spouse_busemail2"; } } $to = "$email$email2$spouse_email2$busemail2$spouse_busemail2"; #echo "&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& $to &&&&&&&&&&&&&&&&&&&&&&&&&&&
"; $subject = $subject; $headers = "From: Annie@investtowin.com\n"; $headers .= "Reply-To: group@investtowin.com\n"; $headers .= "Return-Path: group@investtowin.com\n"; $headers .= "Bcc: group@investtowin.com\n"; #$headers .= "Bcc: little_redhouse@hotmail.com\n"; $headers .= "MIME-Version: 1.0\n"; $headers .="Disposition-Notification-To: group@investtowin.com \n"; $headers .= "Content-Type: multipart/alternative; boundary=\"$mime_boundary\"\n"; # -=-=-=- TEXT EMAIL PART $message = "--$mime_boundary\n"; $message .= "Content-Type: text/plain; charset=UTF-8\n"; $message .= "Content-Transfer-Encoding: 8bit\n\n"; $message .= "Dear $name:\n\n"; $message .= "This is a two part email.\n"; $message .= "If you are reading this text then you have HTML turned off and are not\n\n"; $message .= "able to see the content of this email.\n\n"; $message .= "If this is the case please turn on HTML email and/or call us at 1-800-259-7130.\n\n"; $message .= "Thank You.\n\n"; # -=-=-=- HTML EMAIL PART $message .= "--$mime_boundary\n"; $message .= "Content-Type: text/html; charset=windows-1252\n"; $message .= "Content-Transfer-Encoding: 8bit\n\n"; $message .= "\n"; $emailtxt = file_get_contents($emailfile); $startcust= strpos($emailtxt, "
"); $lengthcust= 100000000; $emailtxt=Substr($emailtxt, $startcust, $lengthcust); $trimfile = $emailtxt; $trimfile=str_replace(chr(10), " ", $trimfile); $trimfile=str_replace(chr(13), " ", $trimfile); $trimfile=str_replace(chr(27), "", $trimfile); #$trimfile=str_replace(chr(2), " ", $trimfile); $trimfile=str_replace("\n", "", $trimfile); $trimfile=str_replace("p>", "p>$br", $trimfile); $trimfile=str_replace("spanstyle=", "span style=", $trimfile); $trimfile=str_replace("

", "

", $trimfile); $trimfile=str_replace("text-align:center'", "text-align:center;'", $trimfile); $trimfile=str_replace("

", "
\n", $trimfile); $trimfile=str_replace("", "", $trimfile); $trimfile=str_replace("", "", $trimfile); $emailtop="$top1$br$top2$br"; $trimfile = "$emailtop$trimfile"; #echo $trimfile; $email = $trimfile; $br="\r\n"; # echo $email; $email=str_replace('$first', " $first2", $email); $email=str_replace('$last', $last2, $email); $email=str_replace('$and', $and2, $email); $email=str_replace('$spouse', $spouse_first2, $email); $email=str_replace('$recommend', $store, $email); $email=str_replace('$date', $todate, $email); $cnt_file2 = "./FullList$today.txt"; $tmpfile2 = fopen($cnt_file2,"a"); $fp2 = fwrite($tmpfile2,"$first2 $last2 H: $home_phone2 C: $cellphone2 B: $bus_phone2 SC: $spouse_cell2 SB: $spouse_bus_phone2 $br"); fclose($tmpfile2); #echo $email; $message .= "$email"; # -=-=-=- FINAL BOUNDARY # $message .= "--$mime_boundary--\n\n"; # -=-=-=- SEND MAIL #$to="little_redhouse@hotmail.com"; $mail_sent = @mail( $to, $subject, $message, $headers ); echo $mail_sent ? "Mail sent" : "Mail failed"; echo "EMAILING to; Dear $first2 $and $spouse_first2 $last2 This:
$store

Pausing 2 seconds...

"; flush(); sleep(1); } $account_show = $account_number; $account_show = substr($account_show, 5, 4); #echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
"; #echo $account_show; #echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
"; $account_show = "*****$account_show"; $part3=number_format($pieces[3]); $store = ""; $br="\r\n"; $br2="
"; $store = "In account number $account_show ($account_name) buy $pieces[2] shares of $pieces[1] for about $$part3 dollars assuming a price of $$cprice (this is an actively traded security and your purchase price may vary). This will be a limit order at $$tprice therefore we will not buy shares if the share price is above $$tprice."; $store = "$store$br$br2$br2"; $currentclnum = $id; $currentlname = $last; //echo $store; //echo "NEW!!!!!!!!!!!!!!!!!
"; } else { $account_show = $account_number; $account_show = substr($account_show, 5, 4); #echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
"; #echo $account_show; #echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
"; $account_show = "*****$account_show"; $part3=number_format($pieces[3]); $br="\r\n"; $store = "$store In account number $account_show ($account_name) buy $pieces[2] shares of $pieces[1] for about $$part3 dollars assuming a price of $$cprice (this is an actively traded security and your purchase price may vary). This will be a limit order at $$tprice therefore we will not buy shares if the share price is above $$tprice."; $store = "$store$br$br2$br2"; //echo $store; //echo "SAME!!!!!!!!!!!!!!!!!
"; } # echo "BUY $pieces[2] shares for about $$part3 dollars

"; } # end if($pieces[0] == $account_number) } # end foreach ($lines as $line_num => $line) } # wend of while ($getthis <= $getrow) # wend of while ($getthis <= $getrow) # NOW OPEN THE CLIENT RECORD AND GET CL FIRST CL LAST CL FFISRT AND ALL EMAILS> $sql2 = "SELECT * FROM client WHERE id LIKE $currentclnum"; $result2 = mysql_query($sql2); $getthis2 = "0"; $id2 = mysql_result($result2,$getthis2,"id"); $first2 = mysql_result($result2,$getthis2,"first_name"); $last2 = mysql_result($result2,$getthis2,"last_name"); $marital2 = mysql_result($result2,$getthis2,"marital"); $spouse_first2 = mysql_result($result2,$getthis2,"spouse_first"); $spouse_last2 = mysql_result($result2,$getthis2,"spouse_last"); $home_phone2 = mysql_result($result2,$getthis2,"home_phone"); $bus_phone2 = mysql_result($result2,$getthis2,"bus_phone"); $spouse_bus_phone2 = mysql_result($result2,$getthis2,"spouse_bus_phone"); $cellphone2 = mysql_result($result2,$getthis2,"cellphone"); $spouse_cell2 = mysql_result($result2,$getthis2,"spouse_cell"); $pref_email2 = mysql_result($result2,$getthis2,"pref_email"); $email2 = mysql_result($result2,$getthis2,"email"); $spouse_email2 = mysql_result($result2,$getthis2,"spouse_email"); $busemail2 = mysql_result($result2,$getthis2,"busemail"); $spouse_busemail2 = mysql_result($result2,$getthis2,"spouse_busemail"); if ($marital2 == "m" or $marital2 == "M") { $and2="and"; } else { $and2=""; $spouse_first2=""; } # echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

"; # echo $pref_email2; # echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

"; if ($pref_email2 == "") { echo "

$first2 $last2 has no preferred email, must be called.

"; $cnt_file = "./NoEmail$today.txt"; $tmpfile = fopen($cnt_file,"a"); $fp = fwrite($tmpfile,"$first2 $last2 H: $home_phone2 C: $cellphone2 B: $bus_phone2 SC: $spouse_cell2 SB: $spouse_bus_phone2 $br"); fclose($tmpfile); } if ($email2 == $pref_email2) { $email2 = ""; } else { if ($email2 != "") { $email2 = " , $email2"; } } if ($spouse_email2 == $pref_email2) { $spouse_email2 = ""; } else { if ($spouse_email2 != "") { $spouse_email2 = " , $spouse_email2"; } } if ($busemail2 == $pref_email2) { $busemail2 = ""; } else { if ($busemail2 != "") { $busemail2 = " , $busemail2"; } } if ($spouse_busemail2 == $pref_email2) { $spouse_busemail2 = ""; } else { if($spouse_busemail2 != "") { $spouse_busemail2 = " , $spouse_busemail2"; } } # -=-=-=- PHP FORM VARIABLES (add as many as you would like) $name = "$first2 $and2 $spouse_first2 $last2"; $email = $pref_email2; # -=-=-=- MIME BOUNDARY $mime_boundary = "----Investtowin----".md5(time()); # -=-=-=- MAIL HEADERS $to = "$email$email2$spouse_email2$busemail2$spouse_busemail2"; #echo "&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& $to &&&&&&&&&&&&&&&&&&&&&&&&&&&
"; $subject = $subject; $headers = "From: Annie@investtowin.com\n"; $headers .= "Reply-To: group@investtowin.com\n"; $headers .= "Return-Path: group@investtowin.com\n"; $headers .= "Bcc: group@investtowin.com\n"; #$headers .= "Bcc: little_redhouse@hotmail.com\n"; $headers .= "MIME-Version: 1.0\n"; $headers .="Disposition-Notification-To: group@investtowin.com \n"; $headers .= "Content-Type: multipart/alternative; boundary=\"$mime_boundary\"\n"; # -=-=-=- TEXT EMAIL PART $message = "--$mime_boundary\n"; $message .= "Content-Type: text/plain; charset=UTF-8\n"; $message .= "Content-Transfer-Encoding: 8bit\n\n"; $message .= "Dear $name:\n\n"; $message .= "This is a two part email.\n"; $message .= "If you are reading this text then you have HTML turned off and are not\n\n"; $message .= "able to see the content of this email.\n\n"; $message .= "If this is the case please turn on HTML email and/or call us at 1-800-259-7130.\n\n"; $message .= "Thank You.\n\n"; # -=-=-=- HTML EMAIL PART $message .= "--$mime_boundary\n"; $message .= "Content-Type: text/html; charset=windows-1252\n"; $message .= "Content-Transfer-Encoding: 8bit\n\n"; $message .= "\n"; $emailtxt = file_get_contents($emailfile); $startcust= strpos($emailtxt, "
"); $lengthcust= 100000000; $emailtxt=Substr($emailtxt, $startcust, $lengthcust); $trimfile = $emailtxt; $trimfile=str_replace(chr(10), " ", $trimfile); $trimfile=str_replace(chr(13), " ", $trimfile); $trimfile=str_replace(chr(27), "", $trimfile); #$trimfile=str_replace(chr(2), " ", $trimfile); $trimfile=str_replace("\n", "", $trimfile); $trimfile=str_replace("p>", "p>$br", $trimfile); $trimfile=str_replace("spanstyle=", "span style=", $trimfile); $trimfile=str_replace("

", "

", $trimfile); $trimfile=str_replace("text-align:center'", "text-align:center;'", $trimfile); $trimfile=str_replace("

", "
\n", $trimfile); $trimfile=str_replace("", "", $trimfile); $trimfile=str_replace("", "", $trimfile); $emailtop="$top1$br$top2$br"; $trimfile = "$emailtop$trimfile"; #echo $trimfile; $email = $trimfile; $br="\r\n"; # echo $email; $email=str_replace('$first', " $first2", $email); $email=str_replace('$last', $last2, $email); $email=str_replace('$and', $and2, $email); $email=str_replace('$spouse', $spouse_first2, $email); $email=str_replace('$recommend', $store, $email); $email=str_replace('$date', $todate, $email); $cnt_file2 = "./FullList$today.txt"; $tmpfile2 = fopen($cnt_file2,"a"); $fp2 = fwrite($tmpfile2,"$first2 $last2 H: $home_phone2 C: $cellphone2 B: $bus_phone2 SC: $spouse_cell2 SB: $spouse_bus_phone2 $br"); fclose($tmpfile2); #echo $email; $message .= "$email"; # -=-=-=- FINAL BOUNDARY # $message .= "--$mime_boundary--\n\n"; # -=-=-=- SEND MAIL $to="little_redhouse@hotmail.com"; $mail_sent = @mail( $to, $subject, $message, $headers ); echo $mail_sent ? "Mail sent " : "Mail failed"; echo "EMAILING to; Dear $first2 $and $spouse_first2 $last2 This:
$store

Pausing 2 seconds...

"; flush(); sleep(1); } else { #echo "No records found"; } # end of main loop echo "EMAILS SENT.... Do NOT refresh this page because that will send the emails again."; echo "
You can now access: /tmp/FullList$today.txt and /tmp/NoEmail$today.txt for calling purposes
"; } # end of if ($submit2 != "Send email") ?>