I need to convert this ASP file into PHP file.
Could you help me ?
Thanks a lot
Ivan

------
<%
'Response.write(Request.Form("Navigazione"))
Set objMail = CreateObject("CDONTS.Newmail")
objMail.MailFormat = cdoMailFormatMIME
objMail.From = Request.Form("tuamail")
objMail.To = Request.Form("suamail")
objMail.Bcc = "[EMAIL PROTECTED]"
objMail.Subject = "##  example  ##"
'Composizione body

Body=Body&"Buongiorno,"&chr(13) &chr(10)




objMail.Body = Body
objMail.Send
Set objMail = Nothing

Response.redirect("conferma.asp")

'Response.write(body)
%>


--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to