Mail problem

  • Thread starter Thread starter Ola Myrgart
  • Start date Start date
O

Ola Myrgart

Hi !

I have 2 textboxes that I use on my site to let people send mail to
their friends for promotion. They fill in their name and their E-mail.
Now the question..!

This is how it looks, I use ordinary SMTP mail :

objMM.To = tboxTipsEmail.Text
objMM.From = tboxTipsName.Text

Is this the right way to do it or must I have it like :

objMM.To = "(e-mail address removed)"
objMM.From = tboxTipsName.Text

It works without errormessages but the mail doesn´t arrive to "objMM.To
= tboxTipsEmail.Text".


OM "Myggan"
 
It may depend on the SMTP server you are using to send the email. Sending
email through an address outside of your domain is refered to as relaying.
Many companies do not have this ability enabled. Your firewall may be
disallowing it. SMTP email uses port 25.
 
Back
Top