HT5312 How do I get the recuse email

How do I get a rescue email because I forgot my passwords

If you don't already have one on your account then you will need to contact iTunes Support or Apple to get the questions reset - a rescue email address can only be added or changed by answering 2 of your questions. In which case see if this user tip helps : https://discussions.apple.com/docs/DOC-4551
e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then try Apple ID Account Security
or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57

Similar Messages

  • I set up an apple id for my 12 year old, a verfication email was sent, but google has locked her out because of age.  How do I get the verfication email?

    I set up an apple id for my 12 year old, a verfication email was sent, but google has locked her out because of age.  How do I get the verfication email?
    Should each person in my house have their own apple id and password?
    Can each of the different ID's be linked back to my apple account so that when they purchase apps and music it will be charged to my credit card?

    alyssa1105 wrote:
    I set up an apple id for my 12 year old, a verfication email was sent, but google has locked her out because of age.  How do I get the verfication email?
    Ask Google... they locked you out of the email account.

  • HT1267 HAVE SET UP AN INCORRECT EMAIL ADDRESS. The call centre set up a new email address as the Username. I am unable to access the new account because the default on my phone is the email that is incorrect. How do I get the correct email as default

    I HAVE SET UP AN INCORRECT EMAIL ADDRESS. The call centre set up a new email address as the Username. I am unable to access the new account because the default on my phone is the email that is incorrect. How do I get the correct email as default??

    Thank you for your help, much appreciated
    Regards
    Geoff

  • Remember only the icloud email address, forget the password, birthdate, and verification questions. How can i get the icloud email back?

    Remember only the icloud email address, forget the password, birthdate, and verification questions. How can i get the icloud email back?

    Go to https://getsupport.apple.com ; click 'See all products and services', then 'More Products and Services, then 'Apple ID', then 'Other Apple ID Topics' then 'Forgotten Apple ID security questions'.

  • 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

  • TS3988 How can I get the verification email resent?

    The email address I had on file is an old one that I had to reactivate so I can get the verification email but my phone won't let me resend the verifcation email.

    Welcome to the Apple Community.
    Put in a request for another verification e-mail to be sent to you.
    Start here, change your country if necessary and go to manage your account

  • EWS: Reading of linked calendars over WebServices -- How can i get the necessary email-adresses?

    What i want to do:
    i'm working on an service, witch should connect to an exchange-server an get all changed appointments to store them
    in an extra database.
    What i already have:
    I have the servnce yet done, except of one thing.
    My problem:
    The idea was to create a dummy-exchange-user, witch has linked all the shared calendars from oder users. So this
    user can see all the shared calendars in outlook.
    I can already read this linked calendars with FindItemType(), but i need the email-address of each mailbox witch
    belongs to the linked calendars.
    for example:
    z.B.
    User1 has the address [email protected]
    User2 has the address [email protected]
    User2 has shared his calendar and User1 has linked this shared calendar.
    If i don't specify the email-address, i get all appointments auf the mailbox, witch i'm connected to 8in this
    example the calendar of User1). If i specify the email-address of User2, i'll get the calendar of user2.
    Here my code (i shorted it a little bit):
    Private Function GetAppointmentsFromExchange(ByVal emailAdress As String, ByVal StartZeit As Date) As List(Of GroupWareAppointment)
    Dim lAppointmentList As New List(Of GroupWareAppointment)
    'Create new Find-Request
    Dim lFindRequest As FindItemType = New FindItemType()
    lFindRequest.Transversal = ItemQueryTransversalType.Shallow
    lFindRequest.ItemShape = New ItemResponseShape()
    lFindRequest.ItemShape.BaseShape = DefaultShapeNamesType.Default
    'Specify the folder to search
    Dim lCalendar As DistingishedFolderIdNameType.Calendar
    lCalendar.Id = DistinguishedFolderNameType.calendar
    'if not my own calendar, then specify the email-address of the linked calendar
    If Not (String.IsNullOrEmpty(emailAdress)) Then
    lCalendar.Mailbox = New EmailAddressType()
    lCalendar.Mailbox.EmailAddress = emailAdress
    End If
    lFindRequest.ParentFolderIds = New BaseFolderIdType() {lCalendar}
    'some nonrelevant code
    'Send Request to Server
    Dim lResponse As FindItemResponseType = myExchangeServerAccess.FindItem(lFindRequest)
    'some nonrelevant code
    Return lAppointmentList
    End Function
    This works pretty fine. But i have to know all the email-addresses of the linked calendars.
    The problem is now, that i don't know how to get this email-addresses. I looked a lot in the internet, but it seems,
    that ews doesen't have such a function.
    The only solution i found was to look in the active directory. But this won't work because active directory is not
    realy connected to exchange.
    So i need either a list of the exchange-users (i need only the email-adresses of the connected calendars, not of all
    the users on exchange) or a other solution, how i can get appointments from linked calendars without to specify the
    email-adresses.
    Does anybody have a tip for me?
    (Sorry for my bad english)

    Maybe somebody is interessted, how i solved it.
    My solution isn't pretty, but it works.
    First i get only the users, who have an mailbox on exchange from active directory.
    Then i try to get their calendar in a loop. If i don't hav the permission for the calendar, i try the next user.
    Getting the whole appointments with GetItem() was very slow. So i get only the ItemIDs an then get only this propertys of an appointment, witch i need (AditionalPropertys). This works faster.
    His Method works, but there is a problem. I can't see, witch appointments were deleted.
    So i tryed SyncFolderItem(). This wors very fine. I get the new, the changed an the deleted (not the whole appointments, because they are deleted. only the IDs).
    The only problem is the Property SyncState. This property defindes, from when SyncFolderItem() should sync. But SyncState isn't a date. It looks like a ID. I recive it every time, i start SyncFolderItem().
    So i have to store the recived SyncState to use it für the next sync. Otherwise the sync will start from the begining.
    It's pitty, that it isn't possible to use a date also.
    I thes days i will try the notofications, so that exchange notifiy me, when there is a change. I don't know, if its true, because some books tell, that otofications works only with one mailbox (the mailbox i'm connected to), an some books tell opposite.
    I will try it.

  • HT5312 How do I send the rescue email if the link doesnt show up???

    I have been trying to answer my secret questions for an hour now and I cant remember the answers and I cant find the link to send the rescue email, plz help.

    The link will only show if you have a rescue email address on your account. If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you won't get the reset option - you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • How do I get the verify email again

    Hey apple how do I get another's verify email
    <E-mail Edited by Host>

    Hi EdenMercy,
    I apologize, I'm a bit unclear on the exact nature of your issue. If you are talking about verifying an email associated with your Apple ID, then you may find the following article helpful (there are instructions on how to resend the verification email in the first section):
    Apple ID: Associating and verifying email addresses with your Apple ID
    http://support.apple.com/kb/he68
    Regards,
    - Brenden

  • I have Iphone3G - my email address was changed automatically to an old address after an software upload -- how can I get the correct email back?

    When I first purchased my phone in January I had an email address of [email protected] but found that the phone and comline weren't talking to each other so I set up email [email protected] and everything worked perfectly   -- calendar, e-mail, etc. Last week a message appeared on my phone instructing me to upload new software. My [email protected] for icloud was replaced my the old email address. The account was locked so I went to iforgot.apple, etc and reset it. Then I took the option to change the email and on the computer all looks correct but my phone still has my old e-mail. I've turned it off and on hoping the new info would be loaded but no luck. Any ideas?

    I kind of agree with Philly on this one.  If you get a new email address, there is no need to establish an entirely new account to use that address.  You just need to modify your account to show the new email address.  This way all your purchase history and rights to purchased apps stays in place.  Creating a new iTunes/Apple account each time your email address changes really doesn't make sense in my opinion.   I only point this out for future searchers who end up on this thread.

  • HT5312 how can you get a rescue email sent .

    cant seem to find link to send rescue email HELP!!!!

    You need to contact Apple to get the questions reset. Click here, phone them, and ask for the Account Security team, or fill out and submit this form.
    (95705)

  • My iCloud account shows an old email address i no longer use even though I've updated my apple id with my new email information.  How do I get the old email account off my iCloud

    my iCloud account shows an old email address i no longer use even though I've updated my apple id with my new email information.  It keeps asking me my old password to the old email address which is NOT a valid email any longer.  I'm unable to manage my iCloud until this is resolved.  HELP

    If your Apple ID is the one that you use for making all of your purchases, it should, automatically appear in FaceTime already. How a no longer valid email address got there to begin with is a mystery to me, if in fact you do have, and have been using another Apple ID.
    Go to Settings>FaceTime>Apple ID. Tap the old email address and sign out, sign in with your Apple ID. It should be verified and allow you to select it as the address that you can be reached by for FaceTime.
    If that does not work, time FaceTime off, restart your iPad and then start all over again.

  • HT5312 How can I get a rescue email sent?

    I am trying to access my answers to my security questions by trying to send a rescue email. However, the option to send one is not available. What do I do to access my answers??

    You will only have the reset link if you have a rescue email address on your account, if you don't have one (you won't be able to add one until you can answer 2 of your questions) then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the page that you posted from to add a rescue email address for potential future use

  • On new MacPro with Microsoft Office, two email accounts (same server) yet one is fine the other dumps 35,000 emails into inbox. Apple consultants no help. How do I get the 35000 email account fixed?

    On new MacPro with Microsoft Office. Two email accounts, same service provider and server, yet one email account is fine and the other dumped the entire server of 35,000 emails into inbox. Need to keep server load for business, but how can emulating server on one account be fixed?

    You should clean up your inbox on the server. Log into the account's web interface and move the 35,000 emails out of the inbox into another folder. Why do you need to keep 35,000 emails in the inbox? An email client like OutLook etc. using POP protocol downloads all the inbox emails to your computer.

  • How do i get the validation email

    Just downloaded Lion and trying to setup icloud.  It asks for my apple id and sends the email but I dont get the email to validate.  I have verified from itunes that I am providing the correct apple id but still no email is sent

    many providers have two-level spam filtering.
    1. certain spam - you will never see those emails
    2. suspected spam - it will end up in your junk folder or even inbox.
    You may need to check with your ISP if they are blocking spam this way.
    Gmail and others do.

Maybe you are looking for

  • So can I hook it up to a tv?

    "So can I hook it up to a tv?", the same way I can with an ipod? I don't thinkt this is supported but if its not can this be added with just a software update? Thanks!

  • Sql Server 2014 - Error message: Failed to read BLOB column

    Hi all,   Am experiencing this error in Microsoft SQL Server 2014 - 12.0.2000.8 (X64) Enterprise Edition (Build 7601: Service Pack 1). Error messages: Message: Failed to read BLOB column Stack:    at Microsoft.SqlServer.Replication.Snapshot.SqlServer

  • Transaction Process in oracle forms

    Hello Experts,                                   I am new in Oracle forms and reports.I am using oracle forms 11g with weblogic server 10.3.5 at windows 7 platform. I have 3 tables: Table A,table B,table C. there are some insert commands for table B

  • Factory calendar error in service order

    Dear Guru's could any body help me in solving the below issue.i created the service notification in iw51 after that i clicked the service order tab then system gives the pop up mesage in that i mentioned order type,planning plant,business area,main w

  • How can i get support here?

    Hi, there is no Apple authorized reseller in my country, how can i get support for my iPod?