Я отправляю почту вот так:
string sampleDisplayName = "Me";
Microsoft.Office.Interop.Outlook.Application sampleApp = new Microsoft.Office.Interop.Outlook.Application();
Microsoft.Office.Interop.Outlook.MailItem sampleMessage = (Microsoft.Office.Interop.Outlook.MailItem)sampleApp.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem);
sampleMessage.To = "Me@Gmail.com";
sampleMessage.Subject = "My subject";
LosMSG = "My message here";
LosMSG += "\n------------";
LosMSG += "\nand here";
sampleMessage.BodyFormat = Microsoft.Office.Interop.Outlook.OlBodyFormat.olFormatRichText;
sampleMessage.Body = LosMSG;
sampleMessage.BCC = ToHoSend;
int samplePosition = (int)sampleMessage.Body.Length + 1;
int sampleType = (int)Microsoft.Office.Interop.Outlook.OlAttachmentType.olByValue;
sampleMessage.Display(true);
sampleMessage = null;
sampleApp = null;
но сообщение слева направо
как мне это сделать справа налево?
спасибо заранее