IPad 2. I want to COPY an address in my contacts list to PASTE into email

iPad 2. I want to COPY an address in my contacts list to PASTE into an email. How do I do that? When I try it just zooms me away to the MAPS location. Help!

Good Afternoon Njc999,
Here are two quick ways to copy a contact's email address so that you can paste it into an email or a field in another application.
Open the Contacts application, select the contact, and then click Edit.  This will allow you to copy any information you need from your address book.
Contacts: Edit or delete contacts and groups
http://support.apple.com/kb/PH11598
Select "Copy Address" from the drop down menu beside the sender's name in an email you have received or sent.  
See the dropdown arrow beside the name John Appleseed in the image below.  Click on the drop down arrow in one of your email messages to see the "Copy Address" option.
Mac Basics: Use Mail on your Mac - Apple Support
http://support.apple.com/en-us/HT204093
Cheers,
- Judy

Similar Messages

  • How to select multiple addresses from the contacts list to send an email?

    How do I select multiple addresses from the contacts list at one time to send an email. Each time I select one, the address book closes and I have to touch the "+" key to open it back to select another address. Is there a way to select all of them at one time instead of making a group? Thanks.

    Yes, once you select a person from your Contacts app, you either need to select more from the '+' button or you can tap in the 'to:' field and type in the first few letters of a contact and select from the list. Kinda bummer but gotta make do.

  • How do I copy text and objects from pages to and paste into Email, objects don't show in Email

    Anyone know how I copy text and objects from pages and paste into Email, objects don't show in Email, thanks

    You can't expect Mail to support all the objects of Pages which can include anything up to charts generated from spreadsheet tables.
    Even if Mail was a superset of Pages, what would the recipients who don't have either Mail or Pages, make of it?
    Peter

  • HT204053 My wife just got this iPad mini and I want to copy the address book on my iPad 2 over to the mini. Can I use iCloud to do this?

    My wife just got this iPad mini and I want to copy the address book on my iPad 2 over to the mini. Can I use iCloud to do this and what are the steps. The 2 devices have different Apple IDs.

    Download the "My Contacts Backup" app from App Store to your iPad 2. Make a backup and send it by email to your wife's address. Open this email from iPad mini and tap the attachment to import the contacts into iPad mini Contacts app.
    Message was edited by: cheonweb

  • Want to copy Delivery address of one line item in shopping cart to all item

    Hi Experts,
                    We are upgrading from SRM 5.0 to SRM 7.0,In SC Creation We want to copy Delivery address of one line item in shopping cart to all line items in Shopping cart by clicking Change All Items button.This is custom button we added this button and we had written code to achieve the functionality but it is not working.This is same like Change All Items button in Account Assigment for copy accont details of one line item to all other line items in SC.
    Web Dynpro Component:/SAPSRM/WDC_UI_DO_SHIPTO
    Web Dynpro View:V_DODC_SHIPTO
    Thanks,
    Aarthi.

    Hi Prasad,
                   Our customer needs that button,they want whenever they are clicking the button delivery address should copy to all line items.
    In my action ONCHANGE_ALL_ITEMS i called this method
    wd_this->mo_dodm_shipto->zchange_all_items( ).
    zchange_all_items( ) is  implemented in class /SAPSRM/CL_CH_WD_DODM_SHIPTO.
    the code i wrote inside zchange_all_items( )
    *Error
      DATA: LX_PDO_ABORT               TYPE REF TO /SAPSRM/CX_PDO_ABORT,  " Class for Fatal error caught by PDO Layer
            LX_PDO_ERROR               TYPE REF TO /SAPSRM/CX_PDO_ERROR.  " Class for PDO General Exception
    Object Instances
      DATA: LO_MSG_CONSUMER            TYPE REF TO /SAPSRM/IF_PDO_MSG_CONSUMER,
            LO_PDO_SHIPTO              TYPE REF TO /SAPSRM/IF_PDO_DO_PARTNER.
    Context-Data
      DATA: lte_cll_shipto              TYPE /sapsrm/if_ch_wd_set_facade=>gt_guid_element,
            loe_cll_shipto              TYPE REF TO /sapsrm/if_ch_wd_set_element.
    Field Symbols
      FIELD-SYMBOLS <lse_cll_shipto>    LIKE LINE OF lte_cll_shipto.
    DATA : lo_pdo_acc TYPE REF TO /sapsrm/if_pdo_do_acct_assgmnt.
      DATA : ls_shipto_cll type /SAPSRM/S_CLL_SHIPTO,
             lt_pdo_partnerdetails      TYPE bbp_pdt_partner,
             ls_pdo_partnerdetails      TYPE bbp_pds_partner,
              LV_GUID          TYPE BBP_GUID,
              lv_item_guid type bbp_guid,
             lv_filled TYPE wdy_boolean.
    *exceptions
      DATA : LX_ABORT                  TYPE REF TO /SAPSRM/CX_PDO_ABORT.
    *Constants
      CONSTANTS : LC_OBJECT_ID         TYPE CRMT_SUBOBJECT_CATEGORY_DB VALUE 'BUS2121001',
                  LC_ADDR_ORIGIN       TYPE /SAPSRM/S_CLL_SHIPTO-ADDR_ORIGIN VALUE 'B'.
      IF LV_FILLED = ABAP_TRUE.
    Downcasting to shipto
        LO_PDO_SHIPTO ?= MO_PDO.
    insert the clipboard into facade and update and submit update
        me->/sapsrm/if_cll_do_mapper~insert_from_clipboard( io_set_facade = mon_cll_set_facade ).
    Add new Accounting entries.
        lte_cll_shipto = mon_cll_set_facade->get_data_elements( ). "get all elements from the context
        LOOP AT  lte_cll_shipto ASSIGNING <lse_cll_shipto>.
          loe_cll_shipto = <lse_cll_shipto>-set_element.
          loe_cll_shipto->get_static_attributes( IMPORTING rv_attributes = ls_shipto_cll ).
    Map ui-structure to pdo-structure
          MOVE-CORRESPONDING ls_shipto_cll TO ls_pdo_partnerdetails.
          IF LS_SHIPTO_CLL-PARTNER_FCT =  mv_part_func.
            LS_PDO_PARTNERDETAILS-PARTNER_FCT = ''.
          ELSE.
            LS_PDO_PARTNERDETAILS-PARTNER_FCT = LS_SHIPTO_CLL-PARTNER_FCT.
          ENDIF.
          IF ls_pdo_partnerdetails-del_ind NE 'X'.
            CALL FUNCTION 'GUID_CREATE'
              IMPORTING
                ev_guid_16 = ls_pdo_partnerdetails-p_guid.
           mv_acc_guid_split = ls_pdo_shipto-guid .
            IF mo_scope = 1.
              ls_pdo_partnerdetails-p_guid = mon_cll_set_facade->get_bo_guid( ).
            ELSE.
              ls_pdo_partnerdetails-p_guid = mo_parent_bo_mapper->items_get_lead_selection( ).
            ENDIF.
            APPEND ls_pdo_partnerdetails TO lt_pdo_partnerdetails.
          ENDIF.
          CLEAR : ls_pdo_partnerdetails, ls_shipto_cll.
        ENDLOOP.
    Add New items to PDO
        IF NOT lt_pdo_partnerdetails[] IS INITIAL.
          TRY.
              LO_PDO_SHIPTO->update_item_partners( EXPORTING it_partner = lt_pdo_partnerdetails
                                                               iv_item_guid       = lv_item_guid
                                                   CHANGING co_message_handler = mo_pdo_message_consumer ).
            CATCH /sapsrm/cx_pdo_abort INTO lx_pdo_abort.
              mo_cll_message_handler->set_abort( io_pdo_abort_exception = lx_pdo_abort ).
            CATCH /sapsrm/cx_pdo_error INTO lx_pdo_error.
              mo_cll_message_handler->add_exception( io_pdo_error_exception = lx_pdo_error ).
          ENDTRY.
    Update PDO with the changed data.
          TRY.
              mo_pdo->submit_update( ).
            CATCH /sapsrm/cx_pdo_abort INTO lx_pdo_abort.
              mo_cll_message_handler->set_abort( io_pdo_abort_exception = lx_pdo_abort ).
            CATCH /sapsrm/cx_pdo_error INTO lx_pdo_error.
              mo_cll_message_handler->add_exception( io_pdo_error_exception = lx_pdo_error ).
          ENDTRY.
    Fire refresh of DO Mappers registered for refresh since the item table has acc related data.
          mo_parent_bo_mapper->fire_event_refresh( iv_perform_updates = abap_false ).
        ENDIF.
      ENDIF.
    Thanks,
    Aarthi.

  • TB v. 24.0: Changed ISP's; ~ new email in Server Settings & Outgoing Server & all Address Books and Contacts; TB still showing old email ID for Fwd & Rply

    TB v. 24.0, Win 7 Pro. Changed ISP's. I use Outlook 2007; wife uses TB, same box. Changed TB username & e-mail address in Server Settings & Outgoing Server & set as Default. Changed e-mail address in all address books and Contact lists. Now TB still showing old e-mail address in <From> when Reply or Forward. This is confusing recipients, who have been sending their replies off to a now-nonexistent account. Checked Windows Contacts - empty. Checked my Outlook 2007 - all Contacts changed appropriately. How do I kill that old e-mail address in TB when it isn't even listed any more - except when we try to Reply or Forward?

    When you got the new email address and changed ISP's, you needed to create a new mail account for that new existing email address.
    When a mail account is created there are many preferences setup to be able to manage and run that mail account. Trying to track down and modify all of those within the either the config editor or prefs.js is not only time consuming, but you could easily cause further problems if any error is made.
    So I suggest you fix the original account by reentering all the old data. Then create a new mail account for the new exisitng mail address.
    * File > New> Existing mail account.
    or
    * 3bar menu icon > New Message > Existing Mail account.
    when you have both mail accounts in your left folder pane, you can choose to move any wanted emails from the older mail account into suitable folders in Local Folders. This will save a copy of emails.
    Then you can delete the old account, leaving saved emails in Local Folders and only one new mail account.
    To remove mail account:
    * Tools > Account sEttings
    * select old mail account
    * click on 'Account Actions'
    * select 'Remove Account'
    * click on OK

  • How can I broadcast a changed email address to my contacts list

    how can I broadcast a changed email address to my contacts list?

    There is one thing to be careful about though when using the "Send Updates" feature in Address book to notify your contacts about address/contact info changes. 
    Addressbook will automatically include your personal vCard at the end of the email message that goes out to your list.  I did not realize this at the time and it royally burned me.  My default address card had a lot of extra personal information contained within it that I did not want people to see.  There was no indication that the vCard would automatically be included nor any way to disable this feature just before sending the "update" email.  As a result, my list received my private information and the only thing I could do was to send a new email to the list manually, minus the vCard attachment, requesting that they please delete the first email in favor of this new one.  I'm hoping that most will disregard the vCard, though I fear the damage has been done.
    I later discovered that the preferences now include a checkbox for enabling/disabling a "private me card", which allows you to control which content is included in your vCard information.  This is handy now, but I wished the default had been to have vCards turned off / not included automatically, since it was a feature I didn't discover until AFTER my updates had been sent! 
    Running OS 10.7.5

  • Upgraded to IOS 7, now address missing in contacts. Have the phone/email/notes but not address

    I upgraded to IOS 7 and now am missing address for my contacts. The phone number(s), email address, notes are all intact, only address missing.

    All of my husband's contacts were gone when he updated, and his son helped him figure out how to copy them over from his Contacts list on his desktop Mac. Mine were fine until a few days after I updated, then I suddenly found a completely empty Calendar AND Contacts list for absolutely no apparent reason. (One minute I'm checking on a text in Urgent Care, an hour later - after not using the phone at all - I'm standing in line at a pharmacy, someone who I know calls me, and her name doesn't show up. I opened my calendar to set up an appt with her and the whole freaking thing was empty!
    I has synched (backed up) my phone about a month ago, so I did I again, assuming that would restore my data. Nope. For some reason I tried it again, and it worked. I'm still missing anything I put in since my backup, but it's still way better than nothing.

  • How do I save an email address to my contact list?

    I receive an email of importance and would like to know the easiest way to save this address to my contact list.

    Hello!
    What is the email that you are using?
    Greetings!

  • After upgrading from Mavericks to Yosemite I can no longer find in Mail the icon (looks like the Add To Contacts icon without the   mark) I used to press in order to obtain an e-mail address from my contact list. What procedure should I use now in or

    After yesterday upgrading from Mavericks to Yosemite I can no longer find in Mail the icon (looks like the Add To Contacts icon without the + mark) I used to press in order to obtain an e-mail address from my contact list. What procedure should I use now in order to quickly add an address to an e-mail that I wish to send?
    Bob

    On the right of the To: field you will see a circled plus sign:
    Click it.

  • I cannot copy from any website opened in FIrefox and paste into Word since using Windows 7, Office 7.

    I just started using a new Windows 7 computer with Office 7 installed. I can no longer copy from any webpage opened in Firefox and paste into Word.
    I can paste into email. Word to Word is OK. And copy from email and into Word is OK. But not from an opened webpage into Word.
    Any help GREATLY appreciated!

    it sure would be nice if Firefox had technical help that customers could call for help.

  • Why are messages being marked as junk when I have the addresses in my Contacts list?

    Almost all incoming messages are marked as junk in two of my accounts. I have 3 other mail accounts without this problem and work normally.
    I've added the address to my contacts list and turned off or deleted all junk filters and options. I've rebuilt the Global index and none of this has helped. A few messages have gone directly to my junk folders for these accounts but mostly they stay in the Inbox.
    I'm sure its probably someplace in my profile but I don't know what it could be or how to find out.
    Thunderbird version 24.6.0
    Mac OSX 10.9.4
    Thanks.

    All they seem to do is furnish the software you can download for Windows OS only. I'm using Mac. They may have something that filters their local email accounts but I've never set up the email account I have with them in Thunderbird. I'll check that account and see if there are any filters..
    I have 3 different email accounts set up, two for 2 websites and gmail. One of the website accounts works just fine. The others have the problem.
    Thanks

  • Just want landline and mobile numbers in my contacts on my 5s not emails

    I just want landline and mobile numbers in my contacts on my 5s not emails as I do not use email on my phone can't find an answer anywhere thanks

    How do you put Contacts on your phone, manually or via an online account (iCloud/Gmail etc)

  • HT1766 We have 2 iPads. I want to copy purchased apps from one to the other. Proper? How?

    I want to copy purchase apps from one iPad to another. Possible?

    No sweat.  Sync both to the same computer's iTunes.  You'll have to configure the sync characteristics separately.  The iTunes keeps track of which is which by S/N.  You might wish to rename one or both so that you can keep track.

  • When sending email messages from iPhone,iMac, or iPad, email address automatically added to my contacts list on iPhone.  How do I trace this down and stop this auto addition of email addresses to my contacts list?

    I am not sure what generates the email address as a contact, be it the iPhone or iMac.  I use iCloud to sync up my contacts/address book.  This appears to happen when I am using Mac Mail on my iMac,  but I have no clue where to begin to look to stop this auto addition.  I have looked in Mail preferences on my iMac and in my iPhone settings, but have found nothing that "automatically add email address to contacts list". 
    Can anyone provide guidance?  Web search has been fruitless ( I am guessing I am not using the right key words for my search).

    Hey jpoolewarren!
    You can delete contacts by following the instructions in this link:
    Contacts at a glance - iPhone
    http://help.apple.com/iphone/7/#/iph3e0ca2db
    Delete a contact.  Go to the contact’s card, then tap Edit. Scroll down, then tap Delete Contact.
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

Maybe you are looking for

  • ICHAT deleted...

    If i deleted Ichat, and i want Leopard, do i have to erase everything and start over? OR can i just install Leopard and will it have the new Ichat on it?

  • The "Buck" Needs To Stop SOMEWHERE!!!

    First off, I know that SCEA is an actual different company but when I expereince issues there I dont go 'ah, gosh darn it Sony Computer Entertainment Of AMerica"... I say "Frekanin Sony!!!" Now this has to deal with a company that Sony allows brandin

  • Ability to open multiple tabs stopped working.

    I have always been able to open multiple tabs using Command-T - now all of a sudden when I use that shortcut, it just opens to the multi-tab screen instead of a new tab and no way to get back to the page I was on. 

  • HT4759 can i use icloud or imatch with windows xp

    Can i use icloud or imatch with windows xp? I keep getting a message "Your request is temporarily unable to be processed" Try again later.

  • Puedo instalar el microsof 2011 for mac  a una ipad retina para hacer trabajos?

      TENGO UNA MAC BOOK PRO CON EL MICROSOFWORD FOR MAC 2011 , YO PUEDO INSTALARLE ESE PROGRAMA A UNA IPAD RETINA Y HACER LOS MISMOS TRABAJOS QUE AGO EN MI MAC PRO? GRACIAS