Hi Imar :)
This is the code that worked - in my yahoo browser it doesn't recognise the line spaces but will try viewing it in something else
<%
Dim Body
Body = "Customer name is " & Request.Form("cust_name") & vbCrLf & "Customer position is " & Request.Form("cust_position") & vbCrLf & "Customer organisation is " & Request.Form("cust_organisation") & vbCrLf & "Customer address is " & Request.Form("cust_address") & vbCrLf & "Customer telephone is " & Request.Form("cust_telephone") & vbCrLf & "Customer fax is " & Request.Form("cust_fax")
Dim objNewMail
Set objNewMail = Server.CreateObject("CDONTS.NewMail")
objNewMail.From = Request.Form("cust_email")
objNewMail.To = "
[email protected]"
objNewMail.Subject = "This is the subject"
objNewMail.BodyFormat = CdoBodyFormatText ' or CdoBodyFormatHTML
objNewMail.MailFormat = CdoMailFormatMime ' or CdoMailFormatText
objNewMail.Body = Body
objNewMail.Send
Set objNewMail = Nothing
%>
Thanks for all your patience and help you are a star
Steve :)