<% ' When the form first comes up do this.... If Request.Form("submit") = "" Then %> Royale Energy, Inc. -- Request Information
LOGIN
HOME
CORPORATE OVERVIEW
ROYALE REPORT
INDUSTRY NEWS CENTER
AWARDS AND RECOGNITION
INVESTOR RELATIONS
NEW PHOTO GALLERY
CONTACT US
 
 
    
    
Request Information by Mail:

* Items in red are required.

* Full Name:
  Email Address:
* Mailing Address:
   
* City:
* State/Province: (U.S. & Canada)
* Zip/Postal Code: (U.S., Canada & U.K.)
* Country:
* Phone:
  Fax:
* Method of Contact:
  Message:
 

Please send me a Company Information Packet

All requests are mailed within 2 business days.

If you have problems using this form,
you may request the information by emailing to ir@royl.com .
Thank you.

Privacy Statement:
All information collected from this form is used exclusively for the internal marketing purposes of Royale Energy, Inc. This information is not sold to, nor shared with, any entity outside of the company.

 
<% ' Once the user presses the submit button, we do this... Else ' Send the mail based on what is filled in on the form...... Dim FullName Dim EmailAddr Dim FromField Dim SubjectField Dim TxtBody FullName = Request.Form("requestor") EmailAddr = Request.Form("email") FromField = FullName & " <" & EmailAddr & ">" SubjectField = "[Information Request]" TxtBody = "Full Name: " & FullName & Chr(13) & _ "E-Mail: " & EmailAddr & Chr(13) & _ "Addr1: " & Request.Form("addr1") & Chr(13) & _ "Addr2: " & Request.Form("addr2") & Chr(13) & _ "City, State and Zip: " & Request.Form("city") & ", " & Request.Form("state") & " " & Request.Form("zip") & Chr(13) & _ "Country: " & Request.Form("country") & Chr(13) & _ "Phone #: " & Request.Form("voiceph") & Chr(13) & _ "Fax #: " & Request.Form("faxph") & Chr(13) & _ "Preferred method of contact: " & Request.Form("MetCon") & Chr(13) & _ "Information Packet?: " & Request.Form("InfoPacket") & Chr(13) & Chr(13) & _ "Message Below" & Chr(13) & "=================================" & Chr(13) & Request.Form("textbody") Dim iMsg Dim iConf Dim Flds Set iMsg = Server.CreateObject("CDO.Message") ' Set iConf = iMsg.Configuration Set iConf = Server.CreateObject("CDO.Configuration") Set Flds = iConf.Fields With Flds ' assume constants are defined within script file .Item(cdoSendUsingMethod) = 2 ' cdoSendUsingPort .Item(cdoSMTPServer) = "mail.royl.com" 'Change this to the DNS of your mail server .Item(cdoSMTPServerPort) = 25 .Item(cdoSMTPConnectionTimeout) = 30 ' quick timeout .Item(cdoSMTPAuthenticate) = cdoBasic ' .Item(cdoSendUserName) = "webmaster" ' Change this to a verified user on your mail system ' .Item(cdoSendPassword) = "waxonwaxoff" ' Change this to a verified password on your mail system .Item(cdoSendEmailAddress) = """Investor Relations"" " .Item(cdoSendUserReplyEmailAddress) = """Investor Relations"" " .Update End With With iMsg .Configuration = iConf .From = FromField .CC = "" .Subject = SubjectField .TextBody = TxtBody .To = "ir@royl.com" .Send End With Set iMsg = Nothing %> Royale Energy, Inc. - Feedback Form
 
 
    
Thank you.

Your request has been sent...

You should be contacted within 2 business days.












 
<% End If %>