Web Forms :: What Is Best Way To Design A Form Which Sends An Email With An Attachment

Feb 5, 2010

I have been given the task to develop a web form which will send an email with an attachment.

I know all about sending an email using (SMTP) What I want to know is that what is the best way to send an attachment along with rest of the email.

I know that ASP.NET has a file upload control and then there are C# post to send a file and then AJAX way to send a file. So my question is what should I use...

View 3 Replies


Similar Messages:

Web Forms :: Memorystream Attachment On An Email?

Sep 28, 2010

I'm trying to attach a memorystream as an attachment to an email, however the file is always empty. I'm using a streamwriter to write the text in to the memorystream, I then flush the streamwriter and I can see the memorystream has data. However when I attach the memorystream to the email the file is always empty. I can't see what I'm doing wrong. The code is:

[Code]....

var4 is a string of XML data.

View 4 Replies

Web Forms :: Unable To Send Email With Attachment

Jan 26, 2011

I have a strange problem with sending email via asp.net.

I adding to my email an attachment with long name ("Xxxxxxxx ąę łóxxxx yyyyyyyyyńęąąyy bbbbbbbbbb b wwwwwwwww wwwwwww ooooooooo" - polish chars included). Next I receiving that email with that file but I can't read the file. There is like damaged, with different name - ""=_utf-8_B_WHh4eHh4eHggxIXEmSDFgsOzeHh4eCB5" and the file size is a little bigger.

View 5 Replies

Web Forms :: Send Email With Image As Attachment?

Feb 10, 2010

I want to send email with image as attachment.

It should be happen by retriving image from sql server database.

View 3 Replies

Web Forms :: How To Send An Email And Search For Attachment

Oct 25, 2010

I know how to send an email. But now I want to send an email with an attachment. I also want to allow the user to browse for and then select the attachment. I cannot seem to find any info on this. All the articles I find show how to attach a file where you know the path and file name. I want the user to browse their drive, select a file, and then send an email with this attachment.

View 3 Replies

Web Forms :: Way To Send Email With Attachment Only For 1 Recipient

Oct 27, 2010

Is there a way to send the same email to multiple recipients but also send with an attachment to only 1 of them?eg. I have a form that gets filled out, the user gets a copy of the form with an attachment (file sits on server). The site owner also wants the email (through bcc) but without the attachment.

View 2 Replies

Web Forms :: Upload File From Email Attachment?

Jul 8, 2010

Is there any way to copy an attachment within an Outlook email and then paste it into a web control that will be able to upload it? I'm thinking no but if there is a way I haven't found it yet.

View 2 Replies

Web Forms :: Upload - Watermark And Email Image As Attachment

May 7, 2015

i want to mail water marked image to the user.but i can't do this. i will show my code...

to use this code,the image watermarking is done...buti can't attach this file to the mail.

Bitmap bmpUpload = new Bitmap(FileUpload1.PostedFile.InputStream, false);
Graphics graphicsObj = Graphics.FromImage(bmpUpload);
Brush brush = new SolidBrush(Color.Gray);
Point postionWaterMark = new Point((bmpUpload.Width / 25), (bmpUpload.Height / 35));

[CODE]..

View 1 Replies

Web Forms :: Export To Excel And Send As Email Attachment

Apr 27, 2012

I have a small form

employeenumber ---textbox
employee name ---- textbox
employee department ---- textbox
employee sal ----- textbox
employee age ---- textbox

Now I have a webpage with search textbox

employeenumber ----- textbox (search criteria)

When user types employee number all the sql related data should fill the form containing employee name, sal, age , dept etc.

next

I have 2 buttons

excel export
automail

In excel export i have a specified format

IF IMGAE NOT DISPLAYED I HAVE CREATED MACRO

Range("A1:A2").Select With Selection .HorizontalAlignment = xlCenter .VerticalAlignment = xlBottom .WrapText = False .Orientation = 0 .AddIndent = False .IndentLevel = 0 .ShrinkToFit = False .ReadingOrder = xlContext .MergeCells = False End With Selection.Merge ActiveCell.FormulaR1C1 = "LOGO" Range("A1:A2").Select With Selection .HorizontalAlignment = xlCenter .VerticalAlignment = xlCenter .WrapText = False .Orientation = 0 .AddIndent = False .IndentLevel = 0 .ShrinkToFit = False .ReadingOrder = xlContext .MergeCells = True End With Range("B1:G2").Select With Selection .HorizontalAlignment = xlGeneral .VerticalAlignment = xlCenter .WrapText = False

[Code] .... 

What I actually need is : when I click export button textbox data should be send to excel file and particular textbox data should be received at particular cell.

E.g:- textbox1 to send to c3 or c4

textbox 2 to send g9

when i click mail button, that data should be send to excel and automailed as attachment, i have 3 excel files with different formats, export button should view all the excel files with their respective data and mail button should send mail the excel files with data ,

1 user i excel file
2nd user 2nd excel file
3rd user 3 excel file

View 1 Replies

Web Forms :: Upload File And Send As Email Attachment

Mar 26, 2016

My requirement is like .... I have a text box for ToEmail address , another control is to upload "n" no of files. And a button to send those selected files ToEmail address which had entered in textbox.

View 1 Replies

Web Forms :: How To Delete Attachment (files) In The Server After Send An Email

Nov 1, 2010

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.

[Code]....

View 6 Replies

Web Forms :: Send Email With An Excel Attachment On Clicking The Button?

Mar 1, 2010

I have a page which has about 50-60 labels in it, and the data is pulled from the database and displayed on the labels. I need to export this data to an excel sheet and Email it when I hit on an Email Button which is at the bottom of the same page 1.e below the table(which has labels displaying data). I Am able to export the data to an excel sheet but not understanding how to Email rightaway without saving or opening the excel sheet.

View 2 Replies

Web Forms :: Email Attachment Only Works In Dev Environment Not On Hosted Server?

Feb 5, 2010

I have a form where a user asks for a quote and we need to send an attached application form. all this worked in the dev environment but when I post the changes onto our hosted server (third party ISP) I get an error when the attachment is added. I have tired to use URL's but that does not work, at the moment I am using a relative path, but have also tried to place the file in the forms page folder.

Here is my attachment code:

string strFullPath = System.Web.HttpContext.Current.Server.MapPath(pRelativePath);
Attachment myAttachment = new Attachment(strFullPath, System.Net.Mime.MediaTypeNames.Application.Pdf);
myMsg.Attachments.Add(myAttachment);

this is in a try - catch block and I get the error "Could not find file".

View 2 Replies

Web Forms :: Export ASPX Page To PDF And Send It As Attachment In Email

Sep 13, 2012

I want to send aspx page via email. So i converted it into pdf. The problrm is the pdf is getting created before the data is saved. So when i open the pdf my testboxes are empty. Below is the code am using. Also I want to send the pdf file as attachment.

protected void SendMail() {
var userName = "anusha-4.n-4@cognizant.com";
var toAddress = YourEmail.Text.ToString();
const string Password = "Mypassword123#";
string subject = YourSubject.Text.ToString();

[Code] .....

View 1 Replies

Web Forms :: How To Convert String To QR Code And Send As Email Attachment

Mar 27, 2014

I  have coded random string as below and i want  to convert it to qr code , then send to email automatically... 

Dim chars As String = "Test1"
Dim qr As String = ""
Dim r As New Random()
Dim i As Integer
For i = 1 To 5
qr += chars.Substring(r.Next(chars.Length), 1)
Next

View 1 Replies

Web Forms :: Send Email With Attachment From FileUpload Control At Runtime?

Jun 26, 2013

i want send mail with attachment using vb.net

im able to send mail but i cant attach any file with mail

how to send mail with attachment ?

View 1 Replies

Web Forms :: Export Panel To PDF File And Send As Attachment In Email

Jul 19, 2013

I need to generate a PDF file in a folder inside the server, and attach it for sending a mail. If again want to send mail means I want to replace the new PDF file.

View 1 Replies

Web Forms :: Attach PDF Document As Mail Attachment And Send Email

Jun 10, 2013

i had a requirement to attach a pdf document to mail.

i have attached the document the text is not displaying in the attachment.

here i had attached the code for reference.

string sSubject = "Automatic Email during Pinpair Activation";
string sEmail = "vidya@silkmedia.net";
string sAttach = "Silkconference_details-PDF-dial out.pdf";
string file = HttpContext.Current.Server.MapPath("~" + @"DocumentSilk Conference-Details-PDF - dial out.pdf")
byte[] bytes = System.IO.File.ReadAllBytes(file);
MemoryStream stream = new MemoryStream(bytes);
stream.Seek(0, SeekOrigin.Begin);
EmailUtils.SendEmbededImageEmailAttach(sSubject,sbEmailContent.ToString(),sEmail,sAttach,stream);

View 1 Replies

Web Forms :: Send Dynamic Created Word Document As Attachment In Email?

Nov 16, 2010

I have Generating a Word Document which is binding with database, and sending this Document to client Email.

I am not saving it anywhere , but directly generating and sending Document via Email.

My all code is working fine . I am able to send Email successfully no error is coming ,but not able to attached Word Document with email.

View 2 Replies

Web Forms :: Send Dynamically Created File Upload Attachment Through Email

Sep 5, 2013

How can i send the fileupload attachment (dynamically created) through email after inserting it in database?

protected void btnUpload_Click(object sender, EventArgs e)
{
for (int i = 0; i < Request.Files.Count; i++)
{
HttpPostedFile PostedFile = Request.Files[i];
if (PostedFile.ContentLength > 0)
{
string FileName = System.IO.Path.GetFileName(PostedFile.FileName);
Stream fs = PostedFile.InputStream;

[code]....

View 1 Replies

Attachment Not Being Sent With Email?

Aug 10, 2010

Email is working when form is submitted, but the attachment is not being sent with it.. what im i doing wrong with the logic below: Also, would it be possible to add an attachment without uploading it to the server first?

[Code]....

View 9 Replies

Add Attachment To Email?

Sep 24, 2010

Can anyone sort out the following code to make the adding an attachment to an email work.

<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="ISO-8859-1" Debug="true" %>
<% @Import Namespace="System.Web.Mail" %>
<% @Import Namespace="IO" %>
<script language="vb" runat="server">

[Code].....

View 2 Replies

C# - Send Pdf As An Attachment In Email?

Nov 23, 2010

My current application send an .rtf in an attachement. I wish to send pdf instead of that.Where in my code I should modify the same?

Below is my code

RichTextBox rtbReport = new RichTextBox(); //Creating instance of Richtextbox
AppResult objResult = null; //Object of Class
frmExaminationReport objReport = new frmExaminationReport(examinationID, ProviderID, PatientID, examType); // Object of Class
AddressBookDataTable dtAddress = null;
rtbReport.Rtf = objReport.RTF; // Entire Result is assigned to Richtext box class
frmMail objMail = new frmMail(); //Object of Mail Class
string directoryPath = Application.StartupPath + "\Temp"; //Creating directory
string tempFileName = "Report_" + DateTime.Today.Year.ToString() + DateTime.Today.Month.ToString() + ".rtf"; //Generating Name
FileStream fsReport = new FileStream(directoryPath + "\" + tempFileName, FileMode.CreateNew); // FileStream
fsReport.Write(ASCIIEncoding.ASCII.GetBytes(rtbReport.Rtf), 0, rtbReport.Rtf.Length); // Writing
fsReport.Flush();
fsReport.Close();
fsReport.Dispose();
objMail.MailSubject = examType + " Report"; //Mail Subject

Let me know if any inputs needed

View 1 Replies

Adding An Attachment To A .NET Email

Apr 3, 2010

How do I attach a file with a very unfriendly name (like a file with a session Id number in it) but have it attached as another name?

The file name in question has the session ID in it to avoid clashes name on the web server but when I attach it to the file, a friendlier name is preferable.Is there a way to attach the file with the unfriendly name as another name so that when the user gets the email he can tell from the name what the content of the file is? I'd hate to have to create a unique folder just to put a non unique file name in it for the purpose of simply attaching it to an email.

Dim mailMessage As System.Net.Mail.MailMessage = New System.Net.Mail.MailMessage()
mailMessage.Attachments.Add("C:MyCodeBESIBESIFilesInvoice-djopyynrgek4p4qadn31dxxs.pdf", ????)

View 1 Replies

MVC :: Send Email With Attachment?

Feb 28, 2011

I would like to send an email with attachement via form, and I can`t figure it out.

My View

[Code]....

My Controller

[Code]....

I get the FileNotFoundException, it is trying to search for the file name on the local machine insted of returning the user input, something like "C:\exemple.txt" .

I also use a jQuery Ajax email form, when I submit the form via ajax the fileAttachement is always null, is there any way around it ?

My Script

[Code]....

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved