In my Global asax file aDo I need the code below newmail.fields.add and why do I need them?
-
In my Global asax file aDo I need the code below newmail.fields.add and why do I need them? The first one works but it puts my password in the code. I am using IIS smtp mail and VS 2003 Also noted below, I have an outlook email account (the first one below password and name changed ) and a msn.com email account The outlook email account works but the msn account does not? newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1") 'newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "kenn@dtyinc.net") 'newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "Password") 'SmtpMail.SmtpServer = "mailserver" SmtpMail.SmtpServer = "" newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1") 'newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "kenn@msn.com") 'newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "welcome") 'SmtpMail.SmtpServer = "mailserver" SmtpMail.SmtpServer = ""