V
VJ
See below code..
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout",60) mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1"); //basic authentication mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "my_username_here"); //set your username here mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "super_secret"); //set your password hereIs there a documentation on what all parameters I can add to Fields... anddoes the above work with Framework 1.1??Vijay
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout",60) mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1"); //basic authentication mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "my_username_here"); //set your username here mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "super_secret"); //set your password hereIs there a documentation on what all parameters I can add to Fields... anddoes the above work with Framework 1.1??Vijay