Plz help
-
Hi, I am reposting this message,plz help me to fix it. I have written code for sending mails using c#.I am facing the following problem with this. Mail Body is not showing up for Meeting requests/mail received through Lotus Notes. The meeting request is shown correctly when viewed through the Outlook with the body showing up but not in Lotus Notes. Here is the code i am using, msg.From = new MailAddress(From); msg.Subject = Subject; msg.SubjectEncoding = System.Text.Encoding.Default; StringBuilder strBodyText = new StringBuilder(); strBodyText.AppendLine(some string on logical criteria); msg.Body = strBodyText.ToString(); msg.BodyEncoding = System.Text.Encoding.Default; msg.IsBodyHtml = false; msg.Priority = MailPriority.High; SmtpClient client = new SmtpClient(); client.Port = 25;//or use 587 client.Host = smtpServer; client.Send(msg); Plz help me... Thanks in Advance Alok...
-
Hi, I am reposting this message,plz help me to fix it. I have written code for sending mails using c#.I am facing the following problem with this. Mail Body is not showing up for Meeting requests/mail received through Lotus Notes. The meeting request is shown correctly when viewed through the Outlook with the body showing up but not in Lotus Notes. Here is the code i am using, msg.From = new MailAddress(From); msg.Subject = Subject; msg.SubjectEncoding = System.Text.Encoding.Default; StringBuilder strBodyText = new StringBuilder(); strBodyText.AppendLine(some string on logical criteria); msg.Body = strBodyText.ToString(); msg.BodyEncoding = System.Text.Encoding.Default; msg.IsBodyHtml = false; msg.Priority = MailPriority.High; SmtpClient client = new SmtpClient(); client.Port = 25;//or use 587 client.Host = smtpServer; client.Send(msg); Plz help me... Thanks in Advance Alok...
See item #3 http://www.codeproject.com/script/Forums/View.aspx?fid=1649&msg=1278604[^]
only two letters away from being an asset
-
Hi, I am reposting this message,plz help me to fix it. I have written code for sending mails using c#.I am facing the following problem with this. Mail Body is not showing up for Meeting requests/mail received through Lotus Notes. The meeting request is shown correctly when viewed through the Outlook with the body showing up but not in Lotus Notes. Here is the code i am using, msg.From = new MailAddress(From); msg.Subject = Subject; msg.SubjectEncoding = System.Text.Encoding.Default; StringBuilder strBodyText = new StringBuilder(); strBodyText.AppendLine(some string on logical criteria); msg.Body = strBodyText.ToString(); msg.BodyEncoding = System.Text.Encoding.Default; msg.IsBodyHtml = false; msg.Priority = MailPriority.High; SmtpClient client = new SmtpClient(); client.Port = 25;//or use 587 client.Host = smtpServer; client.Send(msg); Plz help me... Thanks in Advance Alok...
-
See item #3 http://www.codeproject.com/script/Forums/View.aspx?fid=1649&msg=1278604[^]
only two letters away from being an asset
-
Hi, I am reposting this message,plz help me to fix it. I have written code for sending mails using c#.I am facing the following problem with this. Mail Body is not showing up for Meeting requests/mail received through Lotus Notes. The meeting request is shown correctly when viewed through the Outlook with the body showing up but not in Lotus Notes. Here is the code i am using, msg.From = new MailAddress(From); msg.Subject = Subject; msg.SubjectEncoding = System.Text.Encoding.Default; StringBuilder strBodyText = new StringBuilder(); strBodyText.AppendLine(some string on logical criteria); msg.Body = strBodyText.ToString(); msg.BodyEncoding = System.Text.Encoding.Default; msg.IsBodyHtml = false; msg.Priority = MailPriority.High; SmtpClient client = new SmtpClient(); client.Port = 25;//or use 587 client.Host = smtpServer; client.Send(msg); Plz help me... Thanks in Advance Alok...
alok_2k3 wrote:
I am reposting this message,
Don't do that. It is rude. If someone has an answer for you, they will eventually reply. Reposting the same message over and over doesn't accomplish anything but irritated people...
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
-
alok_2k3 wrote:
I am reposting this message,
Don't do that. It is rude. If someone has an answer for you, they will eventually reply. Reposting the same message over and over doesn't accomplish anything but irritated people...
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
I don't agree with you. The other day, a person reposted a question to which he did not get an answer, in the hope that he would get one this time. I happened to see his question that time and was able to answer it. At least, they stay polite by mentioning the repost fact.
-
I don't agree with you. The other day, a person reposted a question to which he did not get an answer, in the hope that he would get one this time. I happened to see his question that time and was able to answer it. At least, they stay polite by mentioning the repost fact.
Le Centriste wrote:
a person reposted a question to which he did not get an answer, in the hope that he would get one this time
That doesn't do much good except flood the forums with redundant posts. The very reason Chris put
View unanswered questions in the C# forum
in each forum, so posts that haven't received any replies don't get lost."Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon