473,394 Members | 1,781 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Attach An outlook message to an outlook message

How do I attach an outlook email message as an attachment within
another outlook email message.

Right now I am using the following code. But I was wondering if there
is a better way to do this without using a file that needs to be
deleted later.

private MailMessage addAttachment(MailMessage Mail, MailItem item)
{
string path "Messages\\message" + message_id+ ".MSG";
Mail.IsBodyHtml = true;
item.SaveAs(path,
Microsoft.Office.Interop.Outlook.OlSaveAsType.olMS G);
System.Net.Mail.Attachment attach = new
System.Net.Mail.Attachment(path);
attach.Name = "OriginalMessage.MSG";
Mail.Attachments.Add(attach);
message_id++;
}

May 14 '07 #1
0 1267

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

15
by: tabonni | last post by:
Hi I try to grab the checked files from HTML page and then send those PDF files as attachments. It can just send email, there are no PDF files attached. Can anybody point out my error? My...
3
by: Wizard | last post by:
In Access, using VBA, I am sending emails based on query results. These email include relevant information to a scheduled event the recipient is assigned to. This is working great. What I have...
0
by: Catherine | last post by:
Hello, On Visual Studio .NET 2003 when i try to attach the Outlook process for debugging I receive systematically this error “Enable to attach to the process” I try on the computer of my...
0
by: Catherine | last post by:
Hello, On Visual Studio .NET 2003 when i try to attach the Outlook process for debugging I receive systematically this error “Enable to attach to the process” I try on the computer of my...
9
by: Matthias Haberkorn | last post by:
Hello, I haved used VS2003 and send some Reports as EMail attachmend with vb.net. The code looks like this: Dim pdfOpts As PdfRtfWordFormatOptions = _...
12
by: cj | last post by:
What's the parameter (like ?attachment) or something.
1
by: andyoye | last post by:
Below code is attached with a button on my infopath form. It does work ( auto populates "To:" and "Subject" based on form nodes) but how can I attach the file to the message which is attached to...
0
by: mghannom | last post by:
Hello, Plz can you help me on this isssue: i have windows application with visual basic .net 2003 and i need attach outlook mail on it.
0
by: sandeep98811 | last post by:
I am getting following weird issue, "When forwarding an email with an open attachment the user warned twice that an attachment is open". I am catching Forward event of mail item in function...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.