Hi folks,
I'm just testing my new
website hosting on your Windows
VPS Hosting service and have obviosuly got loads of questions!

The main one at the moment is how/where can I send my web sourced emails via?
My dev machine has Exchange installed locally so everything is easy;
Set myMail = CreateObject("CDO.Message")
myMail.To = sEmail_To
myMail.From = sEmail_From
myMail.Subject = sEmail_Subject
myMail.TextBody = sEmail_Message
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "127.0.0.1"
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "My NT Account"
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "My NT Password"
myMail.Configuration.Fields.Update
myMail.Send
Set myMail = nothing
I've enabled the SMTP service on my local
VPS Hosting, but I'm not getting anything. I know the logic works as if I enter the external IP address of my remote development machine it sends fine! (Not ideal as a long term solution

).
I assume I need to know the IP address of an SMTP gateway somewhere at eUK, but I'll also need to authenticate?
Any advice would be much appreciated.
Chat soon.