Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/06/2002, 12:29
lolaila
 
Fecha de Ingreso: enero-2002
Mensajes: 78
Antigüedad: 23 años, 4 meses
Puntos: 0
formulario en domaindlx

Hola,

Hace poco me registré en domaindlx para tener un host gratuíto que me premitiera manejar archivos ASP, entre otros. Me he puesto a buscar como hacer para realizar un formulario que se mande a mi dirección e-mail de Hotmail. En la ayuda de domaindlx dice esto sobre "Enviar E-mail":

'This will create the mail sending object.
Set Mail = Server.CreateObject("Persits.MailSender" )

'First you need to set the hostname of the mail server you want 'the mail object to use and who the mail is from.
Mail.Host = "smtp.yourISP.com"
Mail.From = "[email protected]" 'The From part has the e-mail address.
Mail.FromName = "Someone" 'The FromName is a user friendly name for the sender.

'Now you need to set the destination of the e-mail the address of who it is to.
Mail.AddAddress "[email protected]", "Name"
'You can add more have more than one recepient
Mail.AddAddress "[email protected]", "John Doe"

'Now you need to just give the actual message to send.
Mail.Subject = "subject goes here" 'You need a subject
Mail.Body = "Hello." 'The actual message

'Now you just need to send it...
Mail.Send

'It is always good to check for errors, the MailSender object supports the Err object.
If Err <> 0 Then
Response.Write "Letter was not sent due to the following error: " & Err.Description
End If



Así, mi duda es saber qué es exactamente lo que tengo que poner en el componente Mail.Host, es decir en "smtp.yourISP.com". Qué sería en mi caso "yourISP" ????

soy tontaaaaaaa

gracias :)