Hi Everyone !
I am creating the email editor with RadEditor. Although I can insert image with Image Manager, when i click the send button the image cannot show. I attach the file . Let me know who can resolve?
Here are my C# code behind.
SmtpClient smtp = new SmtpClient();
MailMessage mail = new MailMessage();
mail.To.Add("xxxxxx@xxxx.com");
mail.From = new MailAddress("xxxxxx@gmail.com");
mail.Body = RadEditor1.Content;
smtp.Host = "smtp.gmail.com";
smtp.Port = 587;
smtp.EnableSsl = true;
smtp.EnableSsl = true;
smtp.Send(mail);
Thanks
Htut
I am creating the email editor with RadEditor. Although I can insert image with Image Manager, when i click the send button the image cannot show. I attach the file . Let me know who can resolve?
Here are my C# code behind.
SmtpClient smtp = new SmtpClient();
MailMessage mail = new MailMessage();
mail.To.Add("xxxxxx@xxxx.com");
mail.From = new MailAddress("xxxxxx@gmail.com");
mail.Body = RadEditor1.Content;
smtp.Host = "smtp.gmail.com";
smtp.Port = 587;
smtp.EnableSsl = true;
smtp.EnableSsl = true;
smtp.Send(mail);
Thanks
Htut