Name:
Email:
  Subscribe     unsubscribe 
   
"; $headers = "From: $from \r\n"; if($rdType == 1){ $headers .= "MIME-Version: 1.0\n" . "Content-type: text/html; charset=iso-8859-1"; $subject = "Luna Site UNSUBSCRIBE"; $message = "

Name: $username
Email: $email
Status: UNSUBSCRIBE"; }else{ $headers .= "MIME-Version: 1.0\n" . "Content-type: text/html; charset=iso-8859-1"; $subject = "New User Subscribe"; $message = "

Name: $username
Email: $email
Status: SUBSCRIBE

"; } $ok = @mail($toemail, $subject, $message, $headers); if ($ok) { echo "
Thank you, $username. Your request has been processed.
"; } else { echo "
Mail could not be sent.
"; } } ?>