メール本文内にhtmlファイル(iframeを含む)を送信する必要があります.htmlファイルはブラウザで正常に動作し、ビデオを再生しています.しかし、メール本文内で送信すると、iframeタグが解釈されないため、解釈されません体に見せる。htmlファイルです。
<b>Aman</b>
<iframe height="390" frameborder="0" width="640"
src="http://www.youtube.com/embed/Sf5T5KjMpJU?wmode=transparent"
title="YouTube video player"></iframe>
「Aman」のみを太字で表示するメール本文。これは C# コードです。
StreamReader reader = File.OpenText("C:\\Users\\Girish\\Desktop\\amrit\\Jeff_Project\\indeex.html");
string getemail = textbox_email.Text;
System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();
message.To.Add(getemail);
message.Subject = "Hello";
message.From = new System.Net.Mail.MailAddress("sendingemail");
//message.Body = "This is message body";
message.IsBodyHtml = true;
message.Body = reader.ReadToEnd();
System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient("smtp.gmail.com");
smtp.Credentials = new System.Net.NetworkCredential("sendingemail", "password");
smtp.EnableSsl = true;
smtp.Send(message);
Response.Write("Sent");
iframe が解釈されないのはなぜですか?
助けて解決策を提供してください。
前もって感謝します。