how to replace text

Status
Not open for further replies.

extacy

Member
Jan 6, 2011
106
2
So i know this is probably in php.
i need a code that places what ever the person puts in with E.G email

<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="[email protected]"
myMail.To="EMAIL"
myMail.TextBody="This is a message."
myMail.Send
set myMail=nothing
%>

were it says EMAIL is were i want what ever that person puts in to be places, and to check if its a real email, how would i do that?
 
Status
Not open for further replies.

Users who are viewing this thread

Top