<% dateadded = Now() If request.form("submitted") = 1 and request.form("Email") <> "" then membership = request.form("Membership_type") Name = request.form("Forename") surname = request.form("Surname") address = request.form("Address") postcode = request.form("Postcode") hometel = request.form("Home_tel") worktel = request.form("Work_tel") mobile = request.form("Mobile") email = request.form("Email") club = request.form("Club") '##### you will need to add all the fields in here, i've added the 3 above #### emailbody = "" emailbody = emailbody & "
" emailbody = emailbody & "" emailbody = emailbody & "" emailbody = emailbody & "" emailbody = emailbody & "" emailbody = emailbody & "" emailbody = emailbody & "" emailbody = emailbody & "" emailbody = emailbody & "" emailbody = emailbody & "" emailbody = emailbody & "" emailbody = emailbody & "" emailbody = emailbody & "" emailbody = emailbody & "
I14 Registration
Membership Type: "& membership &"
Forename: "& Name &"
Surname: "& surname &"
Address: "& address &"
Postcode: "& postcode &"
Home Telephone: "& hometel&"
Work Telephone: "& worktel &"
Mobile: "& mobile &"
Email: "& email &"
Club(s): "& club &"
Posted on "& dateadded &"
" '################ This area here is the part that sends your email, you may need to change this depending on what your server uses Set jmail = Server.CreateObject("JMail.Message") jmail.AddRecipient "jim@strawberrymarketing.com" jmail.From = email jmail.Subject = "I14 Paypal Membership" 'jmail.Body = emailbody ' As only HTML formatted emails can contain inline images ' we use HTMLBody jmail.HTMLBody = emailbody ' But as not all mailreaders are capable of showing HTML emails ' we will also add a standard text body jmail.Send( "mail.jclassyachts.com" ) '#################################################################################################################################################### '############ This is what will be displayed on the screen after the mail has been sent #################### response.Redirect("http://www.strawberrymarketing.com/international14/i14_payment.html") '############################################################################################################ else %>
  International 14 Membership Subscription

Please select the type of membership you require then enter you personal details. Once completed you will be forwarded to the payment screen.


Ordinary Member : Boat Owner/Joint Owner
£53.00
Ordinary Member : Boat Owner - Older Boat (pre 1427)
£32.00
Ordinary Member : Penultimate Owner/Non-Boat Owner
£32.00
Ordinary Member : Classic Owner
£21.00
Associate/Overseas Member
£16.00
Junior Member
£8.00
Life Member
£784.00
These prices include a credit card handling fee    

Forename(s) *
Surname *
Address *
Postcode *
Home Tel  
Work Tel  
Mobile  
Email *
Boat No.  
Club(s)  
  
<% End if %>