I manage to upload multiple files from a web form to my local drive. Say at "D:uploadedfilesamy". How do I attach all files in the directory on my email? The email without attachment is sending just fine.
I have a form on which anyone can send me his/her information. Now i want to add 2 or 3 file upload options so that anyone from the website can send me their files along with the information. For getting information i am using this code (in button click) which works fine for me:
using System; using System.Net.Mail; using System.Text; using System.Web.UI; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; protected void btnMyButton_Click(object sender, EventArgs e) { if (Page.IsValid) { try { string enquiry = txtEnquiry.Text.Trim(); if (String.IsNullOrEmpty(enquiry)) return; string emailTitle = GetLocaleResourceString("MyTopic.EmailTitle"); string fullName = txtFullName.Text.Trim(); string email = txtEmail.Text.Trim(); string subject = string.Format("{0}. {1}", SettingManager.StoreName, emailTitle); var body = new StringBuilder(); body.AppendFormat("<hr />{0} ({1})<hr />", emailTitle, DateTime.Now.ToShortDateString()); body.AppendFormat("<b>{0}:</b> {1}<br />", GetLocaleResourceString("MyTopic.FullName"), fullName); body.AppendFormat("<b>{0}:</b> {1}<br />", GetLocaleResourceString("MyTopic.E-MailAddress"), email); body.Append("<br />"); body.AppendFormat("<b>{0}:</b><br /> {1}<br />", GetLocaleResourceString("MyTopic.Enquiry"), MessageManager.FormatContactUsFormText(enquiry)); var from = new MailAddress(email, fullName); var emailAccount = MessageManager.DefaultEmailAccount; string body2 = body.ToString(); //required for some SMTP servers if (SettingManager.GetSettingValueBoolean("Email.UseSystemEmailForContactUsForm")) { from = new MailAddress(emailAccount.Email, emailAccount.DisplayName); body2 = string.Format("<b>From</b>: {0} - {1}<br /><br />{2}", Server.HtmlEncode(fullName), Server.HtmlEncode(email), body2); } var to = new MailAddress(emailAccount.Email, emailAccount.DisplayName); MessageManager.InsertQueuedEmail(5, from, to, string.Empty, string.Empty, subject, body2, DateTime.UtcNow, 0, null, emailAccount.EmailAccountId); pnlResult.Visible = true; pnlRequestQuote.Visible = false; }
Now I added 3 file upload options in the page, now when i try to add code in .cs file i get errors. This is what i am trying to add (in BOLD)
protected void btnMyButton_Click(object sender, EventArgs e) { if (Page.IsValid) { try { string enquiry = txtEnquiry.Text.Trim(); if (String.IsNullOrEmpty(enquiry)) return; string emailTitle = GetLocaleResourceString("MyTopic.EmailTitle"); string fullName = txtFullName.Text.Trim(); string email = txtEmail.Text.Trim(); string subject = string.Format("{0}. {1}", SettingManager.StoreName, emailTitle); var body = new StringBuilder(); body.AppendFormat("<hr />{0} ({1})<hr />", emailTitle, DateTime.Now.ToShortDateString()); body.AppendFormat("<b>{0}:</b> {1}<br />", GetLocaleResourceString("MyTopic.FullName"), fullName); body.AppendFormat("<b>{0}:</b> {1}<br />", GetLocaleResourceString("MyTopic.E-MailAddress"), email); body.Append("<br />"); body.AppendFormat("<b>{0}:</b><br /> {1}<br />", GetLocaleResourceString("MyTopic.Enquiry"), MessageManager.FormatContactUsFormText(enquiry)); //'Attach the file if (FileUpload2.HasFile) { body.Attachments.Add(new Attachment(AttachmentFile.PostedFile.InputStream, AttachmentFile.FileName)); body.Attachments.Add(new Attachment(FileUpload1.PostedFile.InputStream, FileUpload1.FileName)); body.Attachments.Add(new Attachment(FileUpload2.PostedFile.InputStream, FileUpload2.FileName)); } else { body.Attachments.Add(new Attachment(AttachmentFile.PostedFile.InputStream, AttachmentFile.FileName)); body.Attachments.Add(new Attachment(FileUpload1.PostedFile.InputStream, FileUpload1.FileName)); } var from = new MailAddress(email, fullName); var emailAccount = MessageManager.DefaultEmailAccount; string body2 = body.ToString(); //required for some SMTP servers if (SettingManager.GetSettingValueBoolean("Email.UseSystemEmailForContactUsForm")) { from = new MailAddress(emailAccount.Email, emailAccount.DisplayName); body2 = string.Format("<b>From</b>: {0} - {1}<br /><br />{2}", Server.HtmlEncode(fullName), Server.HtmlEncode(email), body2); } var to = new MailAddress(emailAccount.Email, emailAccount.DisplayName); MessageManager.InsertQueuedEmail(5, from, to, string.Empty, string.Empty, subject, body2, DateTime.UtcNow, 0, null, emailAccount.EmailAccountId); pnlResult.Visible = true; pnlRequestQuote.Visible = false; }
I get this error message:
System.Text.StringBuilder' does not contain a definition for 'Attachments' and no extension method 'Attachments' accepting a first argument of type 'System.Text.StringBuilder' could be found (are you missing a using directive or an assembly reference?)
I want to send email with an image attachment but the image must not be hosted on the server. I will attach the image show it in my html e-mail (with img src...). Is it possible?
I have an aspx page (c#) that a user can upload an image file. I'd also like them to be able to attach this image file. Is it possible to attach the image file to the email then send without saving a copy of the attchment to the web server? I don't need a copy of the file, just need to attach it.
I have several images saved as binary data in the DB. How would I remove them and attach them to an email? In the table, I have the filename, description, file(binary data), and content type.
I have the following code, everything works if i remove the attachment lines. But when i add them back i get the error below: we manage our files and content thru a content management system, so thats the reason for the links as they are with the "id=" copying the link into a browser works, but i need to attach the physical file to an email to send. If it cant be done then, we will have to just move the files into a folder outside of our management system.
I need to send table information as PDF file as attachment. how do i convert Div conntent into PDF. i got many link but i was unable to convert only my Div content not HTML page. is there any way to do this.
i am wondering if there is some abilities to send files from folder host in a server to email address. for example: i have textbox (for email address) and Button. after the user fill his email address and click the button i want to load some files from some folder in the server and to send them to the email address he provided. any idea??? (if there is any possibility to do that, please use C# + Asp.net)
I hava a web form to fill a pdf, add attachments and send it through email. I need to fisically delete the attachments after send the email. I have some problems (exception) that says "the file has been used by another process". This code is in a function that create the message with the attach.
I have this scenario where I extract the data from the database as excel format, instead of saving it some where in the drive, I want is to attach this file and send it via e-mail.
I got a following code from another thread for generating word document it seems to be working.Now I would like to know how to attach newly generated document with email.
It's working good, now i need 1 more thing in this, as the pdf file generated on Button click then it should get attached automatically to mail at some email address.
How can I remove the text box associated with a Browse button on my email page?The text box is redundant since I am attaching files (file upload) to my email message one at a time. Or, is there a standard function such as the Link (Attach a File) in Gmail that opens the user's hard drive directory?
I have tried with your pice of code(Published date : sep 16, 2012) to send multiple attachments in asp.net. On my local machine it is working perfectly. When I host my application on server, mail contains attachment(Single or multiple both) is not sending. Attachment and remove files for attachments are working properly but attachment mail is not sending on server.
I have an ASPX Page that contains a fileuploader, I want to know how can I upload multiple files together to server and also create a new folder on Server and then upload these files into this new folder!
uploading multiple files from client to server with asp.net.I have been looking at the asp.net upload control but that is for one file (unless someone knows a better way to do it).
For what I want to do I don't even really need a browse. I know the files off of the client are at a certain location. Is it possible to create a collection of *HttpPostedFile*s and upload those?
I don't think it is possible but would be glad to be proven wrong. Is there a different asp.net method or control that will easily allow uploading multiple files from client to server?
I am trying to save some resized images to the server. Why I get the following error on the vSmlImgFle.Save(vTmpDir.ToString & vFile.Name, ImageFormat.Jpeg) (in red below) line?
A generic error occurred in GDI+.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI+.
And while we are on the subject of dealing with image files, is there a way to get the file format from the original file, rather than looking at the file extension to determine the file type:
If Ext = "JPG" then Type = ImageFormat.Jpeg Else if Ext = "JPG" then Etc.
I thought that vImgFormat = vOrgImgFle.RawFormat might do it but that seems to return something completely different than ImageFormat.Jpeg.
Code: Protected Function CopyScaleImages(ByVal FileSet As FileInfo()) Dim vTmpDir As New DirectoryInfo(Server.MapPath("~/SanInspPhotosTemp/")) Dim vDir As New DirectoryInfo(Server.MapPath("~/SanInspPhotos/")) Dim imgHght As Integer