How do I know if emails for Apple Customer Care is valid

Received an email from Apple Customer care asking for all of my information. I know this is not valid I would like to get the email to Apple. How can I do that?

There have been a number of phishing scams going around for more than  half a year, see:http://www.apple.com/legal/more-resources/phishing/ for further guidance.

Similar Messages

  • I received an email from "Apple Customer Care" to resubmit all my billing details within 24 hours.  Is this a legitimate request?

    I received an email from "Apple Customer Care" to resubmit all my billing details within 24 hours.  Is this a legitimate request? 

    No.   Definitely not.   Report the mail to Apple ... [email protected]
      ... then delete it.

  • HOw do i know ls_order_h-process_type for a customized CRM_ORDER

    Hi all, i need to know the process type because i am trying to update the description in the standard tables... also, can anyone help me with the code, i havent been able to do the change. the variable new_description contains the new value that should be assigned.
      ls_order_h-process_type = 'ZS01'.
    ls_order_h-process_type = 'AC03'.
      ls_order_h-mode = 'B'.
      ls_order_h-description = new_description.
      ls_order_h-descr_language = sy-langu.
    ls_order_h-object_id = new_p_contacto.
      ls_order_h-guid = guid_cont.
    ls_order_h-LOGICAL_SYSTEM = logical_key.
      INSERT ls_order_h INTO TABLE lt_order_h.
      ls_field-fieldname = 'DESCR_LANGUAGE'.
      INSERT ls_field INTO TABLE lt_field.
      ls_field-fieldname = 'DESCRIPTION'.
      INSERT ls_field INTO TABLE lt_field.
      ls_field-fieldname = 'MODE'.
      INSERT ls_field INTO TABLE lt_field.
      ls_field-fieldname = 'PROCESS_TYPE'.
      INSERT ls_field INTO TABLE lt_field.
      ls_input-ref_kind = 'A'.
      ls_input-objectname = 'ORDERADM_H'.
      ls_input-field_names = lt_field.
      INSERT ls_input INTO TABLE lt_input.
      CALL FUNCTION 'CRM_ORDER_MAINTAIN'
        CHANGING
          ct_orderadm_h     = lt_order_h
          ct_input_fields   = lt_input
        EXCEPTIONS
          error_occurred    = 1
          document_locked   = 2
          no_change_allowed = 3
          no_authority      = 4
          OTHERS            = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                RAISING order_maintain_error.
      ENDIF.
      PERFORM ini_lt_input.
      READ TABLE lt_order_h INTO ls_order_h INDEX 1.
      COMMIT WORK.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    I also tried doing it like this: (didnt work either)
      DATA:
        ls_link TYPE crmd_link,
        ls_part TYPE crmd_partner,
        ls_objid TYPE hrobjid,
        lt_index_rows TYPE lvc_t_row,
        ls_index TYPE lvc_s_row,
        esc_asig  TYPE  string,
        logical_key TYPE crmt_logical_key,
        lt_bp_import TYPE crmt_partner_external_wrkt,
        lt_bp_import_aux TYPE crmt_partner_external_wrkt WITH HEADER LINE,
        lt_guid_h       TYPE crmt_object_guid_tab,
        lt_guid_i       TYPE crmt_object_guid_tab,
        l_otjid TYPE hrotjid,
        l_sobid TYPE sobid.
        esc_asig = '00000014'.
        logical_key = '0003'.
        ls_bp-ref_kind = 'B'.
        ls_bp-kind_of_entry = 'C'.
        ls_bp-kind_of_entry = 'C'.
        ls_bp-mainpartner = 'X'.
        ls_input-ref_kind = 'B'.
        ls_input-objectname = 'PARTNER'.
        ls_input-logical_key = logical_key.
        ls_fnames-fieldname = 'DISPLAY_TYPE'.
        APPEND ls_fnames TO lt_fnames.
        ls_fnames-fieldname = 'KIND_OF_ENTRY'.
        APPEND ls_fnames TO lt_fnames.
        ls_fnames-fieldname = 'NO_TYPE'.
        APPEND ls_fnames TO lt_fnames.
        ls_fnames-fieldname = 'PARTNER_FCT'.
        APPEND ls_fnames TO lt_fnames.
        ls_fnames-fieldname = 'PARTNER_NO'.
        APPEND ls_fnames TO lt_fnames.
        ls_input-field_names = lt_fnames.
        SELECT SINGLE *
        FROM crmd_link
        INTO ls_link
        WHERE guid_hi = guid_pos
        AND objtype_set = '07'.
        SELECT SINGLE *
        FROM crmd_partner
        INTO ls_part
        WHERE guid = ls_link-guid_set
        AND mainpartner = 'X'
        AND partner_fct = esc_asig.
        ls_bp-ref_partner_fct = ls_part-partner_fct.
        SELECT SINGLE partner
        FROM but000
        INTO ls_bp-ref_partner_no
        WHERE partner_guid = ls_part-partner_no.
        SELECT SINGLE a~partner_guid
        FROM crmd_partner AS a
        INNER JOIN but000 AS b
        ON apartner_no = bpartner_guid
        INTO ls_bp-partner_guid
        WHERE a~partner_fct = esc_asig
        AND  b~partner = NEW_P_CONTACTO.
        ls_bp-no_type = 'BP'.
        ls_bp-display_type = 'BP'.
        ls_bp-partner_no = NEW_P_CONTACTO.
        ls_bp-partner_fct = esc_asig.
        ls_bp-ref_no_type = 'BP'.
        ls_bp-ref_display_type = 'BP'.
        ls_bp-addr_nr = ls_part-addr_nr.
        ls_bp-addr_np = ls_part-addr_np.
        REPLACE SECTION OFFSET 0 OF ls_input-logical_key WITH '0000'.
        REPLACE SECTION OFFSET 4 OF ls_input-logical_key WITH esc_asig.
        REPLACE SECTION OFFSET 12 OF ls_input-logical_key WITH
        ls_bp-ref_partner_no.
        REPLACE SECTION OFFSET 28 OF ls_input-logical_key WITH
        ls_part-display_type.
        REPLACE SECTION OFFSET 30 OF ls_input-logical_key WITH
        ls_part-display_type.
        ls_bp-ref_guid = guid_pos.
        INSERT ls_bp INTO TABLE lt_bp.
        ls_input-ref_guid = guid_pos.
        INSERT ls_input INTO TABLE lt_input.
      ls_order_h-process_type = 'ZS01'.
      ls_order_h-mode = 'B'.
      ls_order_h-description = new_description.
      ls_order_h-descr_language = sy-langu.
      INSERT ls_order_h INTO TABLE lt_order_h.
      ls_field-fieldname = 'DESCR_LANGUAGE'.
      INSERT ls_field INTO TABLE lt_field.
      ls_field-fieldname = 'DESCRIPTION'.
      INSERT ls_field INTO TABLE lt_field.
      ls_field-fieldname = 'MODE'.
      INSERT ls_field INTO TABLE lt_field.
      ls_field-fieldname = 'PROCESS_TYPE'.
      INSERT ls_field INTO TABLE lt_field.
      ls_input-ref_kind = 'B'.
      ls_input-objectname = 'ORDERADM_H'.
      ls_input-field_names = lt_field.
      INSERT ls_input INTO TABLE lt_input.
      CALL FUNCTION 'CRM_ORDER_MAINTAIN'
        EXPORTING
          it_partner        = lt_bp
        CHANGING
          ct_orderadm_h     = lt_order_h
          ct_input_fields   = lt_input
        EXCEPTIONS
          error_occurred    = 1
          document_locked   = 2
          no_change_allowed = 3
          no_authority      = 4
          OTHERS            = 5.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                  RAISING crm_order_maintain_error.
        ENDIF.
        CLEAR: ls_bp-partner_no, ls_input-ref_guid, ls_input-logical_key,
               ls_bp-ref_partner_fct, ls_bp-ref_partner_no,
               ls_bp-ref_no_type,
               ls_bp-ref_display_type, ls_part, ls_link, lt_bp, lt_input.
        REFRESH: lt_bp.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.

    Tavoyong,
    To know the process type just pass the transaction number to the table crmd_orderadm_h (field object_id) and you can know the transaction type (field process_type).
    Regards,
    Shyamak

  • Can anyone give me a contact email address for apple customer services?, Can anyone give me a contact email address for apple customer services?

    Can anyone give me a contact email for Apple Customer services?
    I would rather not rant on here!

    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Apple - Support - Contact Apple Support.
    For Mac App Store: Apple - Support - Mac App Store.
    For iTunes: Apple - Support - iTunes.

  • My wife got a Iphone in Bangladesh. she do not know the password for apple ID, there is no way to collect it, as the email id for that iphone is not her. how she can use application store and itunes? please help me

    My wife got a Iphone in Bangladesh. she do not know the password for apple ID, there is no way to collect it, as the email id for that iphone is not her. how she can use application store and itunes? please help me

    If it is second hand, try putting it in recovery mode, and restoring it with itunes on a mac or pc.
    Recovery mode tutoral:http://www.youtube.com/watch?v=dkVr5CxFiFM

  • HT5312 I no longer have access to my primary email for Apple ID and I want to use my rescue email as my primary email. How do I accomplish this?

    I no longer have access to my primary email address that is my Apple ID. I want to use my rescue email as my primary email. I have tried and tried and tried to, but Apple will not let me without accessing my old email account... which I cannot. How can I get my rescue email to be my primary on my Apple ID?

    Hello Heather_M_D,
    I found an article on how to change your Apple ID to another email account. 
    Apple ID: Changing the email address you use for your Apple ID
    http://support.apple.com/kb/HT5621
    You would have to verify a few conditions first :
    Ensure that the email address you enter:
    Is one that you regularly use since this will be the primary email for your account
    Is a valid email address
    Is not already associated with another Apple ID you have
    Is not an address that ends in @mac.com. @me.com, or @icloud.com
    If you meet all those conditions (you might have to dissociate the recovery email from your current Apple ID) and your current Apple ID does not end with @mac.com. @me.com, or @icloud.com, you would follow these steps from the article:
    Follow these steps to change the primary email address for your Apple ID:
    Go to My Apple ID (appleid.apple.com), click "Manage your Apple ID," and sign in.
    With the Name, ID, and Email Address drawer selected, click Edit next to Apple ID and Primary Email Address.
    Enter your new email address.
    Best,
    Sheila M.

  • How can I change the email for the Apple ID

    How can I change my email for my Apple ID

    Hello there, Lelizabeth2014.
    The following Knowledge Base article goes over the steps for doing just that:
    Apple ID: Changing your Apple ID
    http://support.apple.com/kb/ht5621
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • How do I send an email to apple?

    how do I send an email to apple? All i see is phone numbers and God knows I'm not eligible for a call.

    Too bad, cause I wanted to send this one:
    REPAIR ID: A77533092
    You have returned the iPod touch without repairs, stating that it "has internal damage related to a liquid spill or submersion." This is wrong.
    A: The LCI is NOT RED
    B: There was no liquid involved between the iPod worked fine; it was plugged into a notebook USB port to charge using the Apple cable; and it was unplugged a couple of hours later and did not power on.
    This is my first Apple product. It will be my last. I was impressed by your FedEx priority overnight shipping services, but your repair performance was poor.
    The technician must have seen something that is not apparent to me (according to the LCI support page visuals) -- or they wanted to go home early.
    Of course, since you sell millions of iPhones or iPads in a weekend, you certainly don't care about a lowly iPod touch 2nd generation (that I bought refurbished from the Apple Store specifically because of the warranty).
    I am very disappointed and will spend my hard-earned money elsewhere.

  • How can i make a email for my printer

    how can i make a email for my printer to send the things to the email and get it printed if i was out of the house my printer model is 3525

    Hi alhashmi_sy,
    Welcome to the HP Support Forums. I see that you would like to learn how to setup the ePrint feature of your Deskjet Ink Advantage 3525 printer.
    The first step is to connect your printer to your wireless network. Please follow the steps in the Installing the Printer Software for a Wireless Network Connection document for your operating system. If you have already setup your printer with a USB cable, each operating system section has the steps to switch from the USB connection to a wireless connection.
    After connecting the printer to your wireless network please follow the steps for Getting the Printer Claim Code. Once you have the web services information sheet with your claim code please Set Up a Custom Email Address for ePrint.
    You should now have a customized ePrint email address for your printer. If you run into any issues please let me know at what step things went awry and the contents of any error messages. Please also let me know what operating system you are using on your computer (whatsmyos.com). Thank you.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • HT1349 how can I change an email for authorization, the email address we used years back, is no longer a valid email address

    how can I change an email for authorization, the email address we used years back, is no longer a valid email address

    SfromW wrote: ... how can I change an email for authorization, the email address we used years back, is no longer a valid email address
    How to change account here: http://support.apple.com/kb/PH1641
    If you need more help, start here: http://www.apple.com/support/itunes/
    SfromW wrote: ... we can't remember the password from the old email address (for authorization)...
    Help Retrieving and changing passwords here: http://support.apple.com/kb/HT1911
    If you need more help, from iTunes for Windows, click  iTunes > iTunes Store > Support
    SfromW wrote: ... apple should make it easier to transfer authorization authority....I would think anyways.
    You might want to rethink your thoughts about making transferring authority easier.  Making it too easy would certainly degrade your account's security.  If you still believe it should be easier, you can send feedback directly to Apple via http://www.apple.com/feedback/itunesapp.html
    You will not get a response, but you can be certain that the responsible Apple people will see your input for consideration in FaceTime product development.
    As a new user, please understand that you are NOT directly addressing Apple here.  For more info about Apple discussions, start here: http://discussions.apple.com/static/apple/tutorial/etiquette.html 
    Message was edited by: EZ Jim
    Mac OSX 10.7.4

  • I cant receive my verification email for apple ID

    Help plz!!!!! i cant receive my verification email for apple ID..

    My Apple ID is set up with my gmail account, and I am not getting ANY verification emails (neither iCloud, nor Apple ID -I tried resetting-). I don't know what this mess is about, but that verification email is the same reason I can't set up FaceTime on my iPad 2... All other forms of Apple ID work just fine -I buy apps all the time from the store and everything runs smoothly-
    If anyone ever finds out a way of fixing this... PLEASE HELP!

  • How can I send an email to apple?

    How can I send an email to apple? I want to send them an e-mail but I dont find their e-mail on the site!

    hummam salahieh wrote:
    hey i need to know how can i stop my apple id from working i need to delete my apple id anyone can help plz
    Your issue has nothing to do with the subject of theis thread. The first thing you should do is to start your own thread. Use a properly descriptive subject line. Explain exactly what you were trying to do, what happened when you tried, what error messages you got and what troubleshooting steps you've already taken (saying "everything" is not useful information).
    Best of luck.

  • HT5312 How can I get the email for a rescue I'd to change my security questions

    How can I get the email for a rescue I'd to change my security questions

    You can't add or change a rescue email address (which is not the same thing as an alternate email address) until you can answer your questions - if you don't already have one then see if the instructions on this user tip helps : https://discussions.apple.com/docs/DOC-4551
    When you've got them reset you will then be able to add a rescue email address for potential future use

  • How can setup the outgoing email for ipad2?

    How can setup the outgoing email for ipad2?

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
     Cheers, Tom

  • How can i find my email inbox apple id, i need to do verification

    How can I find my email inbox apple id, I need to do the verification

    Apple ID security issues -
    Account security issues almost always require you to speak directly to an Apple representative to securely establish your identity as the account holder. You can set it up so that Apple calls you, either immediately or at a time convenient to you.
    1. Go to www.apple.com/support
    2. Choose Contact Support and click Contact Us
    3. Choose Other Apple ID Topics and choose the appropriate topic for your issue
    4. Follow the onscreen instructions

Maybe you are looking for

  • How to show description instead of code on a view page?

    I'm new so this is probably basic, but I didn't find an answer when I tried searching. I'm using JDeveloper 10.1.3.3, ADF Business Components, ADF Faces. In my application, I have both view pages and edit pages (some users will only have read access)

  • Client_ole2 EXCEL.EXE process not killed

    Hi, In a webForm, using webutil I open an Excel file with Client_ole2. When I close Excel the underlying process is not killed; I can still see an EXCEL.EXE process in my task manager. The consequence is that I can’t open an Excel file while the abov

  • Hi, I need find out a script form of MIGO

    When user receive goods of PO using MIGO, they can print the goods receipt slip if they check the print box. Now I need create a new script form instead the default one, but I can't find the configuration of it. I think it should be SPRO->Material Ma

  • Integration of CR XI with Remedy Midtier 7.1

    Hi We have installed CR XI on our machine  Am planning to integrate this this Remedy Midtiier. Has anyone done this kind of integration, If yes, could someon guide us on how to proceed further. Now that we are able to install crystal and midtier succ

  • URL object syntax error - please help!

    Hi, I am trying to add sound to my applets, i am using the URL object and declared an new object called mysong etc... Java compiler is not letting me assign url vale to my object "mysong" code is below for reference: <b>code:</b> // Use the absolute