Hi
I'm trying to send mails using JMail and VBS, but Hotmail put my mails in Junk Folder. With gmail all it works fine.
My code:
smtpServer = "127.0.0.1" 'if I put my real mail server hostname/ipaddress doesn't work
smtpPort = 25
sender = "realaccount@example.com"
senderName = "My Real Name"
...
Set mail = CreateObject ("JMail.SMTPMail")
mail.ServerAddress = smtpServer & ":" & smtpPort
mail.Sender = sender
mail.Subject = subject
mail.AddRecipient email
mail.SenderName = senderName
mail.ContentType = "text/html"
mail.ISOEncodeHeaders = false
mail.ContentTransferEncoding = "8bit"
mail.Body = body
mail.Priority = 3
mail.AddHeader "Originating-IP", "ip.of.mail.server"
mail.Execute
set mail = nothing
[edited by: Xoc at 11:15 pm (utc) on Nov. 18, 2005]
[edit reason] changed to use example.com [/edit]