I kinda know how to send emails, but it doesn't really work
VB Code:
  1. set myMail = server.CreateObject("persits.MailSender")
  2. myMail.host = "mail.planetinternet.be"
  3. myMail.From = email
  4. myMail.addaddress  "[email protected]"
  5. myMail.Subject = "Question"
  6. myMail.Body = naam & vbcrlf & city & vbcrlf & question
  7. myMail.Send
  8. Set myMail = Nothing

I know the problem is "persits.MailSender"

Does anybody know a server I can use, and which object I need to create, what host is has.

Could someone help me please