<script type="text/javascript">
function OnClientLoad(editor) {
var body = editor.get_document().body;
body.setAttribute(
"unselectable", "off");
}
</script>
<
telerik:RadEditor ID="reMessage" runat="server" OnClientLoad="OnClientLoad" NewLineBr="false" >
<Content></Content>
<ImageManager UploadPaths="~/Images" DeletePaths="~/Images" ViewPaths="~/Images" />
<TemplateManager UploadPaths="~/Templates" DeletePaths="~/Templates" ViewPaths="~/Templates" />
</telerik:RadEditor>
And The code on aspx.cs page for sending email is
SmtpClient Client = new SmtpClient();
MailMessage mail = new MailMessage();
mail.Body =reMessage.Content;
Client.Send(mail);
I am attaching screenshot for this so that it will be more clear what is the problem I am facing.Can you please tell me some solution to fix this problem.
6 Answers, 1 is accepted
It is recommended to use images with absolute paths for your e-mail scenario. To produce images with absolute src paths, you should enable the MakeUrlsAbsolute filter, e.g.
RadEditor1.EnableFilter(Telerik.Web.UI.EditorFilters.MakeUrlsAbsolute);
More information is available in the following help article: Content Filters.
Best regards,
Rumen
the Telerik team

Nidhi

This is a security setting of Outlook which ask the received to load or not the images in the email. My suggestion is to check the Actions -> Junk E-mail -> Junk E-mail Options... of Outlook and see how to disable this feature.
All the best,
Rumen
the Telerik team

I am not so familiar with MS Outlook and the problem is not directly related to Telerik controls. That is why I could not be of much help for this scenario. My suggestion is to search in Google for this problem and see what type of links expect Outlook. After that using a content filter or server code you can modify the produced by RadEditor content so that it match the content requirements of MS Outlook.
Kind regards,
Rumen
the Telerik team