How can you select the "from" in Mail with multiple accounts?

Is there a simple dropdown to select the "From" field in Mail when using multiple accounts?
All I can find is a support page saying From is defined by the email account that is highlighted and active.
Thanks

Hoo,
When you hover your mouse over your name in the from field it presents a little arrow. Click it and it lets you select who you are sending an email as.
Also if your reading an email that you got say to your @iCloud.com email when you hit compose it will automatically select your @iCloud.com email to compose your email.
Hope that helps,
Weston

Similar Messages

  • How can you use the same e-mail address for multiple ipads?

    I have two iPads.. an iPad and an ipad 2.  I registared my new ipad 2 and now my old ipad is will not let me log on and is telling me that my e-mail address is already in use.  how can you use the same e-mail address for multiple ipads?

    And by using the same Apple ID you can also share purchases.  If you have a different Apple ID for each iPhone then you can't share purchases.

  • How can I select to answer a mail with or without the message

    Hello
    When a mail is received and then opened, I have the options to answer to the sender or to all. In the account preferences, I can specify if the original message is copied or not. This option applies to ALL the answers. How can I choose when editing a mail if I want the message to be copied or not ?
    Kind regards
    JP

    This is the easiest method I have found that will resolve your issue.
    'Tools' > 'Account Settings' > 'Composition & Addressing' for the maill account
    or
    'menu icon' > 'Options' > 'Account Settings' > 'Composition & Addressing' for the mail account.
    deselect / do not select 'Automatically quote the original message when replying'.
    Click on OK to save changes.
    To send a 'Reply' with no original message, simply click on 'Reply' button.
    To send a 'Reply' with all or part of original message.
    Highlight the section of the message or all of the message and then click on 'Reply' button

  • Can you use the same Apple ID with multiple iMac's?

    I am a teacher and I have multiple iMac's in my room and I need to be able to purchase apps one time and have them on all my computers.  Is this possible?  I know that I can do it with multiple iPad's but can I do with iMac's?

    Yes logon to each computers itunes and away you go.
    To redownload on each itunes got to the itunes store, select Purhased from the quick links section and navigate to what you want to redownload.
    If you want to do it for apps that run on the Macs not on the iPad you need to login to the Mac AppStore and login with the same apple id and download apps that work on macs

  • How do you use the same wireless keyboard with multiple devices?

    My apologies in advance if this question has been answered previously.  There was nothing in the owner's manual (for the keyboard) that answered this.  I did do a rough search that did not yield an answer to this:
    I have one wireless keyboard I am using with my Macbook Pro.  I understand this keyboard can also be used as an input device for my Apple TV and my iPhone - both of which I currently own.
    And although I am able to use the keyboard with those devices, I am forced to "forget this device" after having used it on either the Apple TV or my iPhone so that I can use it on my MacBook Pro.  Is there any combination of keys that one can press on the keyboard that would cycle through my three devices?  As it is right now, if I don't "forget the device" on my secondary units, it somehow defaults to a peripheral OTHER than my MacBook Pro and I'd like for it to always default to my computer. 
    Thank you for any information/advice.

    Bump

  • How do you Select data from two tables with similar data amd merge the output together.

    I have two Tables containing Sales Data. I want to read the Table a sort by date and accumulate dollars by order date. Then I want to read the second table and accumulate these dollar amounts by date and then merge the records together so that I gave 1 row
    with amounts for type A and amounts for type b.
    Here are the tables I am looking at.
    Select Cast(J.Order_Date As Varchar(11))) As [Order Date]
              ,Sum(Case when Sales_Code like '%Comm%' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Comm]
              ,Sum(Case when Sales_Code = '5-Day' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Auto]
              ,Sum(Case when Sales_Code like '%Auto%" then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Auto]
              ,Sum(Case when Sales_Code = '' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Fixed]
              ,Sum(Case when Sales_Code = 'XX' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [SO Comm)
              ,Sum(Case when Sales_Code = 'YY' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [SO Auto)
              ,Sum(Case when Sales_Code = 'ZZ' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [SO Fixed)
    from [PRODUCTION].dbo.Job As J
    union all
    Select Cast(SH.Order_Date As Varchar(11))) As [Order Date]
              ,Sum(Case when Sales_Code like '%Comm%' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Comm]
              ,Sum(Case when Sales_Code = '5-Day'     then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Auto]
              ,Sum(Case when Sales_Code like '%Auto%" then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Auto]
              ,Sum(Case when Sales_Code = ''          then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Fixed]
              ,Sum(Case when Sales_Code = 'XX' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [Job Comm)
              ,Sum(Case when Sales_Code = 'YY' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [Job Auto)
              ,Sum(Case when Sales_Code = 'ZZ' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [Job Fixed)
    from [PRODUCTION].dbo.SO_Detail As SD
    Inner Join [PRODUCTION].dbo.SO_Header As SH
        on SD.Sales_Order = SH.Sales_Order
    Group by J.Order_Date
    Order by J.Order_Date Desc
    Looking for output like
    Order Date   Job Comm   Job AUto   Job Fixed    SO Comm  SO AUto  SO Fixed
    Mar-11-2014    100.00     250.00       50.00     200.00   300.00    400.00
    Mar-10-2014    500.00     340.00        0.00     110.00   400.00    500.00
    Mar-09-2014    600.00     333.00       56.00     210.00   500.00    300.00
    Thanks for your help
    SWProduction

    Seeing the output it looks like what you need is this
    select COALESCE(p.[Order Date],q.[Order Date]) AS [Order Date],
    COALESCE([Job Comm],0) AS [Job Comm],
    COALESCE([Job AUto],0) AS [Job AUto],COALESCE([Job Fixed],0) AS [Job Fixed],COALESCE([SO Comm],0) AS [SO Comm],COALESCE([SO AUto],0) AS [SO AUto],COALESCE([SO Fixed],0) AS [SO Fixed]
    from
    Select Cast(J.Order_Date As Varchar(11))) As [Order Date]
    ,Sum(Case when Sales_Code like '%Comm%' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Comm]
    ,Sum(Case when Sales_Code = '5-Day' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Auto]
    ,Sum(Case when Sales_Code like '%Auto%" then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Auto]
    ,Sum(Case when Sales_Code = '' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Fixed]
    ,Sum(Case when Sales_Code = 'XX' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [SO Comm)
    ,Sum(Case when Sales_Code = 'YY' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [SO Auto)
    ,Sum(Case when Sales_Code = 'ZZ' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [SO Fixed)
    from [PRODUCTION].dbo.Job As J
    )p
    full join
    Select Cast(SH.Order_Date As Varchar(11))) As [Order Date]
    ,Sum(Case when Sales_Code like '%Comm%' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Comm]
    ,Sum(Case when Sales_Code = '5-Day' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Auto]
    ,Sum(Case when Sales_Code like '%Auto%" then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Auto]
    ,Sum(Case when Sales_Code = '' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Fixed]
    ,Sum(Case when Sales_Code = 'XX' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [Job Comm)
    ,Sum(Case when Sales_Code = 'YY' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [Job Auto)
    ,Sum(Case when Sales_Code = 'ZZ' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [Job Fixed)
    from [PRODUCTION].dbo.SO_Detail As SD
    Inner Join [PRODUCTION].dbo.SO_Header As SH
    on SD.Sales_Order = SH.Sales_Order
    Group by J.Order_Date
    )q
    on p.[Order Date] = q.[Order Date]
    Order by COALESCE(p.[Order Date],q.[Order Date]) Desc
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How can I select the secondary display in a multiple display setup?

    I am using a 2012 Mac mini with Thunderbolt and HDMI video outputs to run the multimedia display at our church.  The Thunderbolt port drives a Dell Monitor acting as our primary display.  The HDMI output is set as the secondary display and goes into a splitter so the signal can go either to a small TV beside us in the balcony or into an HDMI selector which then feeds into another splitter which delivers signal to both a 80" TV on the balcony wall and to a Peerless HD flow which transmits the signal to TVs up front.  The issue is the mac will register three possible options for the secondary display (the small monitor TV, the Sharp TV on the back wall, or the HD flow system).  I need it to consistently select one of these, preferably the HD flow system, since that will become bogged down with resolutions higher than 720 p.  Can anyone lend me some advice?  I've included a simple diagram of the situation.  Thanks! 

    Thanks.  Bummer about the image.  It really helps make sense of the layout. I can see it, but that doesn't really help anyone else    Do you know if the mac "remembers" the last used display and selects that one or what would be the parameters in selecting which display it actually settles on among the choices?  Is the first to 'wake' or the last?  We have changed the startup sequence and can't seem to get consistent results. 

  • How can you transfer files from an iMac with a bad logic board?

    This is in reference to my "Nothing but a blue screen at startup!" post. He took his iMac to an Apple authorized repair shop and he was told that the logic board was shot. He has decided to get a new iMac but he's wondering about all the photos and other files he has on the old hard drive. What are the ways that he can get files from the old hard drive on to his new one when he gets it? Thanks in advance for your help with this!
    Eric

    Hi Eric!
    roam's method is a very good one!
    I don't know if this will work because of the bad Logic Board, but another way, may be to use Firewire Target Disk Mode.
    The ailing iMac would have to be Firewire enabled, and you would need access to another Firewire Mac.
    Good Luck!
    ali b

  • How can you see what computers are authorized with my account?

    Good afternoon. I installed iTunes on my desktop computer at home because I began creating a music library. My first original install was on my laptop and then I decided to add iTunes to my desktop. When I authorized iTunes on my desktop it said it was the third computer that is authorized to play content purchased with this Apple ID.
    How do I find out where else I have authorized iTunes? Is there a way in which a person can find out? Does my iTouch count as one?
    If I rest the computers authorization will it delete my music library if I did that? I know you can only do it once a year. I am afraid someone else will use my account.
    Thank You

    In order to see which devices are authorized on your account:
    Open iTunes
    Click Store
    Click Account
    Click View Account
    Enter your password
    Look in the second section iTunes in the Cloud
    To the far right you'll see Manage Devices
    Once it's clicked you will see all of the devices currently authorized in iTunes/on your account
    I was going to say, "Hope this helps," but based on the above, I'm pretty sure it did!
    Thanks guys...

  • How can you move the objects from one server to another?

    how can you move the objects from one server to another?

    Hi,
    Collecting objects for Transporting
    1. rsa1->transport connection
    2. left panel choose 'object type', middle panel choose 'infocube' and 'select objects'
    3. then choose your infocube and 'transfer'
    4. will go to right panel, choose collection mode 'manual' and grouping only 'necessary objects'
    5. after objects collection finished, create request
    6. If they are $TMP, then change the package.
    7. When you click the Save on the change package, it will prompt for transport. Here you can provide an existing open transport request number, or if you like here itself you can create a new one.
    8. You can check the request in SE09 to confirm.
    Releasing Transport Request  
    Lets say you are transporting from BWD to BWQ
    Step 1: In BWD go to TCode SE10
    Step 2: Find the request and release it (Truck Icon or option can be found by right click on request #)
    Note: First release the child request and then the parent request
    Steps below are to import transport (generally done by basis )
    Step 1: In BWQ go to Tcode STMS
    Step 2: Click on Import queue button
    Step 3: Double Click on the line which says BWQ (or the system into which transport has to be imported)
    Step 4: Click on refresh button
    Step 5: High light the trasnport request and import it (using the truck icon)
    Transport
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b5/1d733b73a8f706e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/0b/5ee7377a98c17fe10000009b38f842/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/224381ad-0701-0010-dcb5-d74236082bff
    Hope this helps.
    thanks,
    JituK

  • How can you expect the customer to have a LOCAL/COUNTRY Based Credit Card every where we go??? Last week I was on holiday in HK,  and  from my Hotel I was able to use m VN Credit Card with my Apple ID and purchase online!  Why THIS WEEK, can't I use my HS

    Apple_ID_card_declined_for_this_country
    How can you expect the customer to have a LOCAL/COUNTRY Based Credit Card every where we go???
    Last week I was on holiday in HK,
    and
    from my Hotel I was able to use m VN Credit Card with my Apple ID and purchase online!
    Why THIS WEEK, can't I use my HSBC Platinum Credit Card from Vietnam,
    for my Singapore Apple ID account ,
    while working here in Vietnam???

    Unfortunately, this is a problem that is driven by the DRM Dictatorship.  Despite the proliferation of mobile devices and the fact that there are many of us who do a lot of international travel, content providers don't want you to have access to their products outside of your homeland.  The Balkanized mentality of the DRM Dictatorship is way out of touch with the modern world.
    At least Apple, to its credit, allows you to use your accounts outside of your homeland as long as you have the proper credentials for them.  Most other services use the more Draconian geolocation filtering which does require you to be physically present in your homeland.  For the most part, you are not allowed to leave home if you want access to your favorite entertainment!

  • Since the iPod Lightning connection is not supported, how can you take videos from your iPod 5th Gen to your tv?

    Since the iPod Lightning connection is not supported, how can you take videos from your iPod 5th Gen to your tv?

    Lightning TV out
    - Via Airplay to an Apple TV.
    or one of these cables.
    - http://store.apple.com/us/product/MD826ZM/A/lightning-digital-av-adapter?fnode=3 a
    - http://store.apple.com/us/product/MD825ZM/A/lightning-to-vga-adapter?fnode=3a

  • How can you mute the vocal from a stereo music on garageband 10.0.2

    I need to know ASAP please

    _VanCity_ wrote:
    How can you mute the vocal from a stereo music on garageband 10.0.2
    http://www.bulletsandbones.com/GB/GBFAQ.html#removevocals
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • How can you prevent the mac book pro from unexpectedly shutting off and beeping three times repeatedly?

    How can you prevent the mac book pro from unexpectedly shutting off and beeping three times repeatedly?

    The three beeps are an indication of a hardware problem. Power On Self-Test Beep Definition - Part 2 - Apple Support

  • HT2486 How can you put same contact in a Group multiple times so that you can print the same mailing label multiple times?

    How can you put same contact in a Group multiple times so that you can print the same mailing label multiple times?

    Hello,
    Avery...
    https://discussions.apple.com/thread/2588943?start=0&tstart=0
    Or...
    http://www.belightsoft.com/products/labelsaddresses/overview.php

Maybe you are looking for

  • Help with invoicing and free of cost order

    here's the scenario: i took the pricing procedure of my standard order and basically changed PROO from R to S for statistical. rest is the same. gave the new pricing procedure a name starting with Z, then created a document procedure, then created a

  • ICloud stuck at one account, please help?

    alright, i just set up my icloud with my U.K's apple id, now i wanna use my U.S apple id, but after i changed account to U.S apple id, and quited the system preferences, and when I opened again it is still the U.K's apple id, i tried many times, it s

  • Raw images

    My Photoshop elements 8 won't let me open my raw images. I have done it before but recently had my computer cleaned up. How can I fix this?

  • C form In FI

    hi all can any buddy tell me what is  c form in SAP FI? and which are tables releted to it? if it is help full full poit Message was edited by:         paresh patel

  • When copying raw files from Extreme IV card to hardrive, finder copies a few files then exits task and wipes the card clean of all images.

    When copying raw files from Extreme IV card to hardrive, finder copies a few files then exits task and wipes the card clean of all images.  Have tried new card and card-reader to no avail.  Have done this many times on other macs with no problems. Ca