C# - 将图像从上传表单附加到电子邮件

时间:2015-03-11 02:58:21

标签: c# html-email image-uploading email-attachments

我有一个将图像上传到服务器的表单,我可以在表单中获取图像和其他数据的文件名。

如何将图像转换为字符串以包含在html电子邮件中?

这是给我文件名的代码。

string PostedFileName = "not_set";
foreach (string fileName in HttpContext.Current.Request.Files)
{
    HttpPostedFile file = HttpContext.Current.Request.Files[fileName];
    PostedFileName = fileName;
}
MessageSent("TRUE - " + PostedFileName);

0 个答案:

没有答案