Click to See Complete Forum and Search --> : simple question about JMail


weee
04-06-2004, 09:14 PM
I'm using JMail and when I'm getting the email the subject look like that:

an_email_from_weee even though I wrote the subject to be an email from weee.

What's wrong with that?

Here's the code?


Set objJMail = Server.CreateObject("JMail.SMTPMail")
objJMail.ServerAddress = "mail.webhost4life.com"
objJMail.ContentType = "text/html"
objJMail.Sender = "weee@hotfdsfsd.com"
objJMail.SenderName = "weee"
objJMail.AddRecipientEx "weee@hotfdsfsd.com", "weee"
objJMail.Subject = "an email from weee"
objJMail.Body = HTML
objJMail.Execute()
objJMail.Close()
Set objJMail = Nothing


Thanks a lot!!!