Skip to main content

How to attach an Email to another Email in Outlook

How to attach an Email to another Email in Outlook

Sometimes you want to attach an email to another email as proof to your current mail, in this situation you just cant copy and paste the mail chain in the mail body. Lets see the correct way of doing that.
  1. Click on new mail, new window will be opened/Reply to the existing mail
  2. In the tool bar click on message tab, under it you will find attach file, attach item, signature etc. 

  3. Click on attach item, from the drop down menu select Outlook item.
  4. A dialog box will appear, in that browse and select the mail which you want to attach. 

You can even attach business card, for that in 3rd step select attach Business Card instead of Outlook item.

Comments

  1. Best Casino Near Richmond, VA - Mapyro
    Find the 삼척 출장안마 BEST and NEWEST CASINO in Richmond, VA. We 서산 출장샵 compare 대전광역 출장안마 reviews and choose the location with the closest 거제 출장안마 proximity. Mapyro is open daily 24 삼척 출장마사지 hours.

    ReplyDelete

Post a Comment

Popular posts from this blog

How to get IOS 7 look and feel on Android

Get IOS 7 like Control Center on Android Phone with the help of an App One of the cool features of IOS 7 is its Control Center, this allows users to access quick settings like airplane mode, vibration mode, WiFi, Bluetooth, Brightness Control etc. To access Control Center user has to swipe-up the screen from bottom.  Now Android users can also experience this handy feature and get the look and feel of IOS 7 on their Android Devices with the help of a new app called  Control Center . This App was launched recently and in the beginning  it faced Copyright issues with Apple but now it is available for download on Play Store .  Control Center allow us to customize the settings of the app according to our choice. We can change the order of toggles, add app shortcuts of our choice, Configure Touchable Area etc. This app makes the android device very handy and quick. Sometimes while using another app if we want to change the brightness of the screen or...

Sealed Classes and Sealed Methods

Sealed Class Sealed class is a special kind of class in C# which is used to prevent the inheritance to next level. Any class with sealed keyword cannot be derived to any subclass. We will get a compile error if we try to define base class as sealed class. sealed class A { } class B: A { } //CompileError In the above example if we see, Class B tries to inherit from class A which is sealed. We will get a compiler error. Now if we move the sealed keyword from Class A to Class B and try to inherit from class B we will get a compile error ( 'C': cannot derive from sealed type 'B' ). class A { } sealed class B: A { } class C : B { } //Compile Error Below code should be fine, as Sealed class should be the last in the inheritance hierarchy. class A { } class B : A { } sealed class C : B { } Sealed and Abstract modifiers cannot be used together as Abstract Class has to provide the functionality and Sealed will prevent that. Sealed class cannot ...