I need to make a copy of an entire email, including the header w/the sender's info and time, etc. to insert into a letter, etc. How can I do this w/out cutting and paste and doing the header separately from the text.

I need to make a copy of an entire email, including the header w/the sender's info and time, etc. to insert into a letter, etc. How can I do this w/out cutting and pasting   the header separately from the text. I know there is a way besides a screen shot but I've spend hours trying to find it.

Smurfslayer wrote:
For the particularly persnickety types you might want to expose the full headers in the email message as well.  It's easy enough to do, from mail's 'menu' select "view"; then "message"; then all headers.
Another option you could use is a screen capture using Grab.
Activate Grab, then shift + command + w (for a window screen shot).  Then confirm the window selection and click the mail message. 
Dave
Why are you addressing this to me...?
I am not the OP...

Similar Messages

  • I cut and pasted a description from the Internet. It posted as a link in iPhoto. It seems to have made a global change--all my descriptions are now blue, underlined, and Times Roman 12 rather than Arial white. How can I get this back to the default?

    I cut and pasted a description from the Internet. It posted as a link in iPhoto. It seems to have made a global change--all my descriptions are now blue, underlined, and Times Roman 12 rather than Arial white. How can I get this back to the default?

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • I have a new laptop so I download again iTunes...the problem here is that I just got a cd and I tried to put it on my iPod and it won't let me, how can I fix this?

    I have a new laptop so I download again iTunes...the problem here is that I just got a cd and I tried to put it on my iPod and it won't let me, how can I fix this?

    The iPod sees the new computer as a new iTunes library. You can only sync with one iTunes library.  However, you can manage music among disfferent computers.  See:
    Using iPhone, iPad, or iPod with multiple computers

  • HT1766 Hi, I share an iTunes account with my wife. Sometimes she gets my iMessages and I don't and vice versa. Also if people face time me it goes to her phone. How can I stop this from happening?

    Hi, I share an iTunes account with my wife. Sometimes she gets my iMessages and I don't and vice versa. Also if people face time me it goes to her phone. How can I stop this from happening?

    You can share the same Apple ID in
    Settings > iTunes & App Store > Apple ID: here
    But for all other Apple services like:
    FaceTime, iMessage, iCloud, etc, one of you should use a different Apple ID.

  • My iPhone is merging different contacts with the same firstname into one contact. How can i resolve this.

    My Bosses iPhone is merging different contacts with the same firstname into one contact. How can i resolve this? He seems very disturbed and thinks i don't know what i'm doing. I've set up all his devices to sync across and now its messed up on his iPad, and two iPhones.
    E.G Contacts with firstname 'Adams' and different numbers are synced into one account.
    Now i have no clue how many contacts are this way cos he has a huge number of contacts (he's the ceo).
    Please i need a suggestion on how to fix this.
    Thanks for the help.

    Janie Mac wrote:
    Cannot find settings to then go to general then about.
    How do I edit the device in iTunes?
    Double-click on the name.
    My screen shot shows both devices because I sync wirelessly.  Right now I can change the iPod name but not the iPad name because the iPod is idle while the iPad is syncing.  In another minute or two, I'll be able to change the iPad name.

  • Trying to install Abode CS4 design standard Upgrade version. How can I install this with out having to install all my previous versions?  Thanks Mario

    Trying to install Abode CS4 design standard Upgrade version.
    How can I install this with out having to install all my previous versions?
    Thanks
    Mario

    You simply install it and input the required serials, including one of a previous product when asked for it.
    Download CS4 products
    Mylenium

  • When i ask a question on ebay and send, when i try to back tab it keeps insisting on resend how can i turn this off?

    you search items on ebay,ask a question of the seller and send it, i then want to return to my listing and the searched items, but firefox will only let me do this if i resend my question every time, it means all the messages i send asking a question are duplicated, how can i turn this annoying protocol off?

    Feedback? Did any of this help?

  • How can i map this lot out?

    I have this code below
    How can get it to print out so that it will print out all the key values that are equal to cust, Then print out all the key values that are equal to details, then print out all the key values that are equal to item.
    Thank you
    loftty
                          String a =  "firstname";            //column names
                        String b = "lastname";
                        String c = "id";
                        String d = "adress1";
                        String k = "phone";
                        String f = "county";
                        String g = "post code";
                        String h = "country";
                        String i = "goods in";
                        String j = "goods out";
                        String st1 = "cust";
                        String st2 = "cust";  //table names
                        String st3 = "details";
                        String st4 = "details";
                        String st5 = "item";
                        String st6 = "details";
                        String st7 = "item";
                        String st8 = "item";
                        String st9 = "item";
                        String st10 = "cust";
                             hash.put(a, st1);
                             hash.put(b, st2);
                             hash.put(c, st3);
                             hash.put(d, st4);
                             hash.put(k, st5);
                             hash.put(f, st6);
                             hash.put(g, st7);
                             hash.put(h, st8);
                             hash.put(i, st9);
                             hash.put(j, st10);

    If you can sort by key and then insert into hashtable, then you just have to have one while loop and just print key and value...
    This is one way of doing it.
    Enumeration en = hash.elements();
    while(en.hasMoreElements())
    String key = (String)en.nextElement();
    String value = (String)hash.get(key);
    if(hash.containskey("cust")
    System.out.println(key);
    System.out.println(value);
    Enumeration en2 = hash.elements();
    while(en2.hasMoreElements())
    String key = (String)en2.nextElement();
    String value = (String)hash.get(key);
    if(hash.containskey("detail")
    System.out.println(key);
    System.out.println(value);
    Enumeration en3 = hash.elements();
    while(en3.hasMoreElements())
    String key = (String)en3.nextElement();
    String value = (String)hash.get(key);
    if(hash.containskey("item")
    System.out.println(key);
    System.out.println(value);
    }

  • Since downloading Mountain Lion, I keep getting this pop up notification but it disappears to quick for me to even read the first letter. How can I disable this, and what is going on??

    I got mountian lion for my macbook pro when it came out and since then, a mac notification pops up every once in a while and it just flashes on the screen real quick and then goes away. I can't even read the first letter so I don't know what it's saying or how I should fix this/disable it. Any ideas??

    I haven't figured out what caused it, but I seem to have fixed it by doing a simple back up and restore to factory settings than set up with the back up. Everything is working fine now. I would recommend trying that if you haven't already.

  • I want to upgrade my software, but it says I need more start up memory. I keep my stuff on an external hard drive so I don't know what is eating my memory. How can I check this?

    How can I figure out what is eating my memory so I can upgrade my software?

    Do you mean disk storage space or physical RAM? The latter is memory, not the former. If you mean the former:
    Freeing Up Space on The Hard Drive
      1. See Lion/Mountain Lion/Mavericks' Storage Display.
      2. You can remove data from your Home folder except for the /Home/Library/ folder.
      3. Visit The XLab FAQs and read the FAQ on freeing up space on your hard drive.
      4. Also see Freeing space on your Mac OS X startup disk.
      5. See Where did my Disk Space go?.
      6. See The Storage Display.
    You must Empty the Trash in order to recover the space they occupied on the hard drive.
    You should consider replacing the drive with a larger one. Check out OWC for drives, tutorials, and toolkits.
    Try using OmniDiskSweeper 1.8 or GrandPerspective to search your drive for large files and where they are located.
    If you mean RAM, then you have to add more to the computer which is not possible on Air models.

  • I installed LabVIEW 5.1 on an XP machine and some of the VI's, such as fit to curve, do not have icons. Instead, they have a ? where the icon should be, and they cannot be inserted into my VI's. Can anyone fix this?

    I am using a Dell Inspiron I8100 Laptop with Windows XP Home and am running LabVIEW 5.1 in Windows 95 compatability [I also did so for the install to get rid of the "wrong os" message]. I am able to use nearly all of the functions, but a few of them did not make the transition to my machine. I cannot use some of the VI's contained in the Mathematics sub-palette, I cannot use some of the demos, and it is really setting me back. Instead of an icon for the Mathematics>>Curve Fit sub-palette I get a ? in an icon-sized box that says Curve Fit for it
    s description. Can anyone fix these broken links?
    Attachments:
    LabView.bmp ‏2731 KB
    labview2.bmp ‏2731 KB

    From your discussion I have seen that you try to use LV 5.1.
    It seems that 5.1.1 will work correct. The difference is that 5.1.1 is compatible with Win 2000 and 5.1 is not. This can by a issue.
    Another thing I have seen under Win2000 is the rights a user has. Since you use XP Home there should be no restrictions to the user of the machine. One thing to take into account is do you install and use LV as the same user?
    Waldemar
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

  • Hoping someone can help. Just recently, maybe a week, Firefox has been crashing every few minutes into being online. How can I stop this from happening? I'm using IE right now and hate it. Help!

    Add-ons: {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}:1.2.2,{3112ca9c-de6d-4884-a869-9855de68056c}:7.1.20110512W,{CAFEEFAC-0016-0000-0017-ABCDEFFEDCBA}:6.0.17,{03B08592-E5B4-45ff-A0BE-C1D975458688}:0.6.0.8,{a0d7ccb3-214d-498b-b4aa-0e8fda9a7bf7}:20100908,{CAFEEFAC-0016-0000-0025-ABCDEFFEDCBA}:6.0.25,{4ED1F68A-5463-4931-9384-8FFF5ED91D92}:3.4.0,{972ce4c6-7e08-4474-a285-3208198ce6fd}:3.6.8
    BuildID: 20100722155716
    CrashTime: 1318829294
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1280028266
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 2517
    StartupTime: 1318827564
    Theme: classic/1.0
    Throttleable: 1
    Vendor: Mozilla
    Version: 3.6.8
    This report also contains technical information about the state of the application when it crashed.

    Maybe you are using Firefox 3.6..can you please upgrade it to 7
    * getfirefox.com

  • ITunes is showing as authorised on five computers. However I only own two computers? How can I sort this issue out?

    I have just installed iTunes on a lap top and when I authorised the software I received a message that I had used my five autorisations. However I only own one PC and one lap top.
    To the best of my knowledge I've never authorised any other computer. Can anything be done to sort this out?

    Following quote from Apple Support:
    If you need to authorize your new computer and are unable due to already having five authorized computers, you can deauthorize all computers by doing the following:
    Click iTunes Store on the left side of iTunes.
    If you're not signed in to the store, click the Account button, then enter your account name and password.
    Click the Account button again (your Apple ID appears on the button), enter your password, and then click View Account.
    In the Account Information window, click Deauthorize All.
    Note: You may only use this feature once per year. The Deauthorize All button will not appear if you have fewer than two authorized computers. If you need assistance on using this feature, please contact iTunes Store support via email (http://www.apple.com/support/itunes/store/).

  • I have a profile that has 2 email accounts in it - I need to seperate them into two distinct profiles, how can I do this?

    I had a single laptop and several email accounts - a personal gmail account, a work gmail account (freelance writing) and a non-gmail account for my day-job.
    Until recently, my two gmail accounts were under a single profile and the job email in another.
    A month ago, I purchased a new computer so now I have a computer at home and at work and need to set up my emails at home.
    When taking a backup from thunderbird on my existing/old computer, it has it all saved as one profile - BUT I need to seperate them at home into seperate profiles.
    A friend suggested 1) putting it back as it is 2) then renaming the profile folder and 3) deleting the second account, 4) putting back the whole original backup folder so it creates a second profile and then 5) deleting the other email from this new profile, thus leaving two profiles.
    However, this sounded strange to me - possible, but strange - so I've elected to ask for help here before I try anything.
    Any advice in this regard is greatly appreciated.
    Cheers.

    Basically that's the way to go, with some modifications:
    Instead of<br>
    ''1) putting it back as it is 2) then renaming the profile folder''
    follow these instructions:<br>
    Create a new profile and copy the old one over it.
    http://kb.mozillazine.org/Moving_your_profile_folder_-_Thunderbird#Create_a_new_profile_and_copy_the_old_one_over_it
    The same goes for<br>
    ''4) putting back the whole original backup folder so it creates a second profile''
    Make sure to create backups of your profiles.
    http://kb.mozillazine.org/Thunderbird_:_FAQs_:_Backing_Up_and_Restoring

  • My iphone 5s screen won't work but the touch screen works perfectly...I've tried resetting it several times but it  continues to stay black. How can I fix this?

    Iphone screen is black but the touch screen works and everything else, I just can't see anything on the screen . I tried resetting it but that did nothing.

    You held down the home & power buttons until the Apple logo appeared? This could take as long as 30 seconds or more.

Maybe you are looking for

  • Unwanted link appears in paragraphs - AP div issue?

    Hello. I am using cs4 on Macbook Pro (version 10.6.8) and develping the site below. http://www.gibbstowndentistry.com/ If you are using Firefox you may not see it, but if you are on Safari, you can see there is a link for whole paragraph in editable

  • Reports for 0SD_C01  0SD_C05   0FIAR_C02, 0FIAR_C03

    Hello all           I am looking for a list of reports based on 0SD_C01  0SD_C05   0FIAR_C02, 0FIAR_C03 Thanks Xcaliber

  • PRICING DETERMINATION WITHOUT CONDITION RECORD

    HI ALL, can anybody explain me when you creating one purchase order if there no condition record for this material (for an example info record) how the price can automatically picked up and sit into the net price field. What is big-pricing procedure

  • Http NullPointerException

    Hi, everyone. I wrote a program to use httpConnection, and it runs well in the simulator, but when it is running in a mobilephone (Nokia Ngage), a NullPointerException is thrown. Why? The phone can link to Internet through WAP, and some other Java br

  • Tree lazy loading

    I need a way to make a Tree load data using lazy-loading method. I have found on the internet that Tree control has a bug, and doesn't support lazy loading. Does anyone have a solutions to this? Workaround? Or, how can be implemented a lazy-loading m