如何使用 C# 从 DIV 中抓取图像
是否可以通过 C# 获取嵌入 div 的图像并将其附加到电子邮件中?
我已经获得了通过电子邮件附加和发送图像的代码,我只是不知道如何让它从 div 中抓取特定项目并通过电子邮件发送。
该图像随先前的用户选择而变化,因此我不能仅应用图像的静态地址。
有什么想法吗?
is it possible to grab an image that is embedded in a div via C# and attach it to an email?
I've got the code for attaching and sending images via email, I just don't know how to get it to grab the specific item out of the div and email it.
The image varies with a previous user selection so I can't just apply a static address of an image.
any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要从入站电子邮件中抓取图像吗?
了解有关MIME 格式的更多信息:电子邮件中的所有图像均以 Base64 格式加密在 MIME 消息中。要获取图像,您需要解析您的电子邮件消息,读取对图像进行加密的 Base64 字符串,并像这样解码该字符串:
var byties = Convert.FromBase64String(Body)
You need to grab image from inbound email?
Read more about MIME format: all images in email message are encriped in base64 format in MIME message. To grab your image you need to parse your emailmessage, read base64 string, wich encript your image, and decoding this string like this:
var byties = Convert.FromBase64String(Body)
我会考虑使用 microsoft html 控件,阅读文档并使用 DOM 获取图像的 url,使用 http 下载它,然后将其附加到您的电子邮件中
以供
参考codeproject.com/KB/tips/cs_imagedownload.aspx" rel="nofollow">如何下载图像
从 Visual Studio 读取 Dom
I would look at using the microsoft html control, read the document and use the DOM to get the url of the image, download it using the http and then attach it to your email
for reference
How to download the image
Reading the Dom from visual studio
使用 HtmlAgilityPack 和
HttpWebRequest
。Use HtmlAgilityPack and
HttpWebRequest
.