G
Guest
My client app uses SmtpMail.Send() is failing on client PC's that are configured with Outlook 2003.
I'm using code similar to:
Dim Message As System.Web.Mail.MailMessage = New System.Web.Mail.MailMessage(
Message.To = args(0
Message.From = args(1
Message.Subject = args(2
Message.Body = args(3
SmtpMail.SmtpServer = "your mail server name goes here
SmtpMail.Send(Message
Q1) How can I retrieve the SMTP Server regardless of the Outlook version (on a client station
Q2) How can I configure a client PC to point to a specific SMTP Server?
I deliberately used System.Web.Mail.MailMessage so that I wouldn't have to deal with mail configuration issues.
-billg_s
I'm using code similar to:
Dim Message As System.Web.Mail.MailMessage = New System.Web.Mail.MailMessage(
Message.To = args(0
Message.From = args(1
Message.Subject = args(2
Message.Body = args(3
SmtpMail.SmtpServer = "your mail server name goes here
SmtpMail.Send(Message
Q1) How can I retrieve the SMTP Server regardless of the Outlook version (on a client station
Q2) How can I configure a client PC to point to a specific SMTP Server?
I deliberately used System.Web.Mail.MailMessage so that I wouldn't have to deal with mail configuration issues.
-billg_s