Leon Delaney
Talkback Broadcaster, Actor, Writer, Director.
Leon Delaney

Contacting Leon Delaney...

<% 'Check to see if the form should be processed '-------------------------------------------- if request.form("Submit") = "Send Now" then 'Retrieve values from form '------------------------- mailrecipient = "leon@leondelaney.com" sendermail = request.form("Email") sendername = request.form("Name") sendermessage = request.form("Message") subject = "Contact from LeonDelaney.com" 'If the email is not valid then use Leon's email '----------------------------------------------- if instr(sendermail,"@") = 0 or instr(sendermail,".") = 0 then sendermail = "leon@leondelaney.com" end if 'Create e-mail '------------- Set objCDOMail = CreateObject("CDONTS.NewMail") objCDOMail.From = sendername & "<" & sendermail & ">" objCDOMail.To = mailrecipient objCDOMail.Subject = subject objCDOMail.BodyFormat = 0 objCDOMail.MailFormat = 0 objCDOMail.Body = sendermessage objCDOMail.Send Set objCDOMail = Nothing %>
Thank you for completing the contact form. Leon will read your message as soon as possible. <% else %>
email leon@leondelaney.com
xlmedia +61 7 5575 5595
leon delaney show +61 7 5524 4497
2SM talkback line 131269
Natalie Hall Management +61 7 3871 0906
xlmediaptyltd
P.O. Box 6925
Gold Coast Mail Centre
Queensland, 9726
Australia.
Or complete the following form:
Name
Email
Message
<% end if %>