Sending mails
-
Hi, 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. Plz help me... Thanks in Advance Alok...
-
Hi, 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. Plz help me... Thanks in Advance Alok...
It's difficult to help if you don't show us some code.
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Upon this disciple I'll build my new religion? The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
It's difficult to help if you don't show us some code.
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Upon this disciple I'll build my new religion? The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
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);
-
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);
Ok, looks pretty good to me. Do other applications have issues downloading these emails?
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Upon this disciple I'll build my new religion? The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
Ok, looks pretty good to me. Do other applications have issues downloading these emails?
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Upon this disciple I'll build my new religion? The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
Sounds like you need to talk to Lotus Notes support, given that you're code looks fine and it works with other email clients.
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Upon this disciple I'll build my new religion? The apostle Paul, modernly speaking: Epistles of Paul Judah Himango