MIren a lo que me refiero:
tengo un formulario hecho en HTML:
Código:
<form>
Nombre Completo* <br>
<input maxlength="30" name="nombre">
<br>
Poblacion* <br>
<input maxlength="30" name="poblacion">
<br>
email* <br>
<input maxlength="30" name="email">
<br>
direccion* <br>
<input maxlength="30" name="direccion">
<br>
telefono1* <br>
<input maxlength="30" name="telefono1">
<br>
telefono2 <br>
<input maxlength="30" name="telefono2">
<br>
comentario <br>
<input maxlength="30" name="comentario">
<br>
<input type="submit" name="Submit" value="Submit Enquiry">
</form>
Quiero algún procesardor en ASP como este:
Código:
'Set the response buffer to true so we execute all asp code before sending the HTML to the clients browser
Response.Buffer = True
'Dimension variables
Dim strBody 'Holds the body of the e-mail
Dim objCDOMail 'Holds the mail server object
Dim strMyEmailAddress 'Holds your e-mail address
Dim strCCEmailAddress 'Holds any carbon copy e-mail addresses if you want to send carbon copies of the e-mail
Dim strBCCEmailAddress 'Holds any blind copy e-mail addresses if you wish to send blind copies of the e-mail
Dim strReturnEmailAddress 'Holds the return e-mail address of the user
'----------------- Place your e-mail address in the following sting ----------------------------------
strMyEmailAddress = "youremailhere"
'----------- Place Carbon Copy e-mail address's in the following sting, separated by ; --------------
strCCEmailAddress = "CCemailhere" 'Use this string only if you want to send the carbon copies of the e-mail
'----------- Place Blind Copy e-mail address's in the following sting, separated by ; --------------
strBCCEmailAddress = "" 'Use this string only if you want to send the blind copies of the e-mail