I coding with asp.net 1.1 (C#)
I try send mail with gmail server with code below
which still throw error
could somebody help me to know which going wrong?
thank you verymuch
MailMessage mail = new MailMessage();
mail.From = MailFrom;
mail.To = MailStr;
mail.Cc = MailStrCC;
mail.Subject = MailHead;
mail.Body = MailBody;
mail.BodyFormat = MailFormat.Html;
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusing",2);
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport",2 ...
Go to the complete details ...