Hy guys, i'm in deep ..... i'm trying to build a flash webpage for my sister , and i just downloaded the template ( i don't know much just flash ) , and now i have the whole page done and ready , in the folder i have flash , 1contact ( ASP ) , 1 contact (PHP) a index ( i know what it is ) , and CSS style ( i know that two ) .
My Question is where do i need to put my email so that the "clients" cand email me.
THIS IS CONTACT.PHP
<?
Error_Reporting(E_ALL & ~E_NOTICE);
$subject="from".$REQUEST['Your_Name:'] ;
$headers= "From:".$REQUEST['Your_Email:'] ."\n";
$headers.='Content-type: text/html; charset=iso-8859-1';
$message='';
while ($field = current($REQUEST)) {
if ((key($REQUEST)!="Your_Name:") && (key($REQUEST)!="Your_Email:") && (key($REQUEST)!="i")) {
$message.="<strong>".key($REQUEST)."</strong> ".$field."<br>";
}
next($REQUEST);
}
mail($_REQUEST['recipient'], $subject, "
<html>
<head>
<title>CORREO BISUTERIA</title>
</head>
<body>
<br>
".$message."
</body>
</html>" , $headers);
echo ("Tu mensaje ha sido enviado. Gracias!");
?>
<script>
resizeTo(300, 300);
</script>
THIS IS CONTACT.ASP
<%
for i=1 to 7
message=Request("message")
next
message=message + Request("message")
smtpServer = "smtp.aol.com"
smtpPort = 25
name = Request("Your_Name:")
Set myMail = CreateObject("CDO.Message")
myMail.Subject = "from " & name
myMail.From = Request("Your_Email:")
myMail.To = Request("recipient")
myMail.HTMLBody = "<html><head><title>Contact letter</title></head><body><br>" & message & "</body></html>"
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = smtpServer
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = smtpPort
myMail.Configuration.Fields.Update
myMail.Send
%>
[/COLOR]
IF U CAN helP me u'RE MY NEXT GOD TO BE.
i'm all done with the page just can't find the email zone to put it so that members can email me .
THANK YOU .