-1
我正在製作一個窗體來捕獲筆記本電腦的圖像,並通過電子郵件或WhatsApp或任何其他社交網站將其發送到手機。雖然我得到了捕獲圖像代碼,但我找不到發送圖像的代碼。請幫忙。從網絡攝像頭捕獲圖像,並將其發送到手機
我正在製作一個窗體來捕獲筆記本電腦的圖像,並通過電子郵件或WhatsApp或任何其他社交網站將其發送到手機。雖然我得到了捕獲圖像代碼,但我找不到發送圖像的代碼。請幫忙。從網絡攝像頭捕獲圖像,並將其發送到手機
您可以使用此代碼圖像發送電子郵件:
using (var client = new SmtpClient())
{
MailMessage newMail = new MailMessage();
newMail.To.Add(new MailAddress("[email protected]"));
newMail.Subject = "Test Subject";
newMail.IsBodyHtml = true;
var inlineLogo = new LinkedResource(Server.MapPath("~/Path/To/YourImage.png"));
inlineLogo.ContentId = Guid.NewGuid().ToString();
string body = string.Format(@"
<img src=""cid:{0}"" />
", inlineLogo.ContentId);
var view = AlternateView.CreateAlternateViewFromString(body, null, "text/html");
view.LinkedResources.Add(inlineLogo);
newMail.AlternateViews.Add(view);
client.Send(newMail);
}
一個System.InvalidOperationException異常在client.Send(NEWMAIL)存在的;如何處理它? –