Si es así ¿podría alguien decirme el código que tengo que utilizar y como usarlo?
Aquí pongo el código del formulario y gracias a los que respondan:
Código:
<html> <head> </head> <body bgcolor=#e78e35> <form name="cartografia" action="Cartero.php" method="POST"> <center> <table width="300px" border="4px"> <tr> <td> ¿Donde ira el correo?<br> <select name="receptor"> <option value="[email protected]">Gmail</option> <option value="[email protected]">Yahoo</option> </select> </td> </tr> <tr> <td> ¿Cual es tu correo?<br> <b><input type="text" name="emisor" size=40 value="@"></b> </td> </tr> <tr> <td> Escribe aqui tu mensaje o sugerencia:<br> <b><textarea name="sugerencia" cols=40 rows=8></textarea></b></br></br> <input type="submit" value="Enviar sugerencia"> <input type="reset" value="Limpiar"> </td> </tr> </table> </center> </form> </body> </html>