How to use my non-iCloud email with iCloud calendar events

Is there a way to use my regular email address (non iCloud) to receive iCloud invites?
My contacts don't know my iCloud account, they only know my regular email address so they will send messages, calendar invites, etc to my regular email which is not my iCloud account.
Although I can accept invites to any account, there isn't the same level of integration with iOS and OS X apps that you get when the invite is sent to an iCloud account. (i.e. they don't appear in Calendar, you have to accept them from an email and it sends you off to iCloud.com) or you have to download the .ics file to add it, etc.
Is there a way to link that regular email address to my iCloud account so that invites and messages to that email are treated as though they were sent to my regular iCloud account and I can accept, reject directly from the calendar applications on either my iOS or OS X device?
Thanks!

You can sign in with your @me.com address in System Preferences>iCloud and check Mail in the checklist there - this will reactivate the address, though you will not be able to retrieve any data previously stored on MobileMe.

Similar Messages

  • How to use iPhone to sync Outlook with Google calendar?

    This is a bit of a convoluted question, but I think there may be an answer using the iPhone as a go between. Here is the issue, I cannot get my google calendar and my Outlook calendar to sync with each other.  I'm using Outlook 2011 on a macbook pro which is using 10.6.8.  The macbook does not have iCloud services on it.  I am also using an iPhone 5 which of course does have iCloud.
    Before recently switching to an iPhone, I always used a Blackberry.  I was able to get my google calendar events to appear in my Outlook calendar when I connected the Blackberry to my mac with a cord and selected "sync" in the Blackberry desktop manager.  There were some issues with duplicate events on my BB calendar, but I could deal with that.  For that set up, I had turned everything on to sync with as much as possible, including iCal.
    Here is my current question.  Now that I am using the iPhone, is there a way to make google calendar and Outlook calendar sync with each other?  I would think this is possible, because my iPhone and my iCal have all the events from both calendars.  Google is syncing with my iCal, and Outlook is syncing with my iCal.  So, shouldn't the sync work in reverse as well?  Does the iCal only receive events from these two sources but not also "export" events to these calendars as well?
    And, is there a fix using either the iPhone or iCal to make both calendars appear in both places, as they do in my iCal and my iPhone?
    Thank you!

    In order to be able to order from the U.S. Online Store you need to have a U.S. credit card and the device has to be shipped to a U.S. address.

  • How to use UTL_SMTP to send email with existing file attachment

    Hello! I am trying to create a pl/sql procedure that lets me send an email and include an existing file to a email address. So far, I found information on how to send a file and create an attachment with information I put in the procedure. This is NOT what I'm trying to do. I'm trying to send an email and include an attachment for a file that already exists. I need the pre-existing file to be sent to the email recipient.
    This is how far I've gotten, but this only allows me to CREATE an attachment with the information I put in it from the procedure. I got it from the following site:
    http://www.orafaq.com/wiki/Send_mail_from_PL/SQL
    DECLARE
       v_From       VARCHAR2(80) := '[email protected]';
       v_Recipient  VARCHAR2(80) := '[email protected]';
       v_Subject    VARCHAR2(80) := 'Weekly Invoice Report';
       v_Mail_Host  VARCHAR2(30) := 'mail.mycompany.com';
       v_Mail_Conn  utl_smtp.Connection;
       crlf         VARCHAR2(2)  := chr(13)||chr(10);
    BEGIN
      v_Mail_Conn := utl_smtp.Open_Connection(v_Mail_Host, 25);
      utl_smtp.Helo(v_Mail_Conn, v_Mail_Host);
      utl_smtp.Mail(v_Mail_Conn, v_From);
      utl_smtp.Rcpt(v_Mail_Conn, v_Recipient);
      utl_smtp.Data(v_Mail_Conn,
        'Date: '   || to_char(sysdate, 'Dy, DD Mon YYYY hh24:mi:ss') || crlf ||
        'From: '   || v_From || crlf ||
        'Subject: '|| v_Subject || crlf ||
        'To: '     || v_Recipient || crlf ||
        'MIME-Version: 1.0'|| crlf ||     -- Use MIME mail standard
        'Content-Type: multipart/mixed;'|| crlf ||
        ' boundary="-----SECBOUND"'|| crlf ||
        crlf ||
        '-------SECBOUND'|| crlf ||
        'Content-Type: text/plain;'|| crlf ||
        'Content-Transfer_Encoding: 7bit'|| crlf ||
        crlf ||
        'This is a test'|| crlf ||     -- Message body
        'of the email attachment'|| crlf ||
        crlf ||
        '-------SECBOUND'|| crlf ||
        'Content-Type: text/plain;'|| crlf ||
        ' name="ap_inv_supplier_cc10.txt"'|| crlf ||
        'Content-Transfer_Encoding: 8bit'|| crlf ||
        'Content-Disposition: attachment;'|| crlf ||
        ' filename="ap_inv_supplier_cc10.txt"'|| crlf ||
        crlf ||
        'TXT,file,attachment'|| crlf ||     -- Content of attachment  (THIS IS MY PROBLEM!  I NEED TO BE ABLE TO ATTACH AN EXISTING FILE, NOT CREATE A NEW ONE)
        crlf ||
        '-------SECBOUND--'               -- End MIME mail
      utl_smtp.Quit(v_mail_conn);
    EXCEPTION
      WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error then
        raise_application_error(-20000, 'Unable to send mail: '||sqlerrm);
    END;
    /

    First, you must create a directory object
    create directory ORALOAD as '/home/ldcgroup/ldccbc/'
    /Study the Prerequisites in the link I posted above, or else you will not be able to read/write files from the above directory object
    "fname" relates to the file name that you read from.
    In the code below, it is also the name of the file that you are attaching.
    Although they can be different!
    l_Output is the contents of the file.
    declare
    vInHandle  utl_file.file_type;
    flen       number;
    bsize      number;
    ex         boolean;
    l_Output   raw(32767);
    fname      varchar2(30) := 'ap_inv_supplier_cc10.txt';
    vSender    varchar2(30) := '[email protected]';
    vRecip     varchar2(30) := '[email protected]';
    vSubj      varchar2(50) := 'Weekly Invoice Report';
    vAttach    varchar2(50) := 'ap_inv_supplier_cc10.txt';
    vMType     varchar2(30) := 'text/plain; charset=us-ascii';
    begin
      utl_file.fgetattr('ORALOAD', fname, ex, flen, bsize);
      vInHandle := utl_file.fopen('ORALOAD', fname, 'R');
      utl_file.get_raw (vInHandle, l_Output);
      utl_file.fclose(vInHandle);
      utl_mail.send_attach_raw(sender       => vSender
                              ,recipients   => vRecip
                              ,subject      => vsubj
                              ,attachment   => l_Output
                              ,att_inline   => false
                              ,att_filename => fname);
    end;
    /

  • How can I sync my company email with iCloud?

    I have my company email address synced with my iCal account but I want to sync with my iCloud account so it will be pushed to my iPad. How can I do this? Please and thank you!

    Yes, I am try isn't. To figure how to sync mail as well,  just a pop account.  It appears it his cannot be done. The response you received to just setup email directly on the device does not answer the question.  Yes, that is easy to do, but does not sync with devices which is the objective.  Are there more features coming from cloud??

  • How to set-up a private Email with icloud

    Hello,
    I have a couple of other E-Mail accounts that I would like to use as alias in addition to my principal account.
    Unfortunately I was not able to find a setting for doing this, while it is possible to do with both "GMAIL" and "OUTLOOK".
    Does anyone know, if this function really is not available in icloud or maybe I cannot find it?
    Thank you

    Hello notachav,
    From what I can gather, it sounds like you are trying to utilize iCloud Keychain on an iOS device. I have located an article that will walk you through a series of steps to ensure iCloud Keychain is activated:
    iPhone Tips
    http://support.apple.com/kb/TI241
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • Now that iCloud has done away with galleries, how can we share as I did with MobileMe? How can we sync non-Apple email accounts across multiple computers?

    Now that iCloud has done away with galleries, how can we share as I did with MobileMe? How can we sync non-Apple email accounts across multiple computers?

    You will need to find a third party solution for online storage in order to share things like photos with others. Some popular solutions to this are dropbox and sugarsync.
    You cannot sync non-iCloud email accounts across your iOS devices and computers unless they are IMAP accounts like iCloud. If they are IMAP accounts, you will do it in the same way as you have always done.

  • When first registering with iCloud at the Apple store I had to provide a non-Apple email. How do I now change that email on iCloud?

    When first registering with iCloud at the Apple store I had to provide a non-Apple email. How do I now change that email on iCloud?

    Your iCloud login is an Apple ID, and if you go to http://appleid.apple.com you can change the ID to another non-Apple email address that has never been associated with an Apple ID. You cannot change it to your @icloud.com address.

  • How to use "Notes" on my iPad with my existing iCloud address?

    How to use "Notes" on my iPad with my existing iCloud address? It asks me to create a new one...

    Did I overlook some critical info here? I'm having the same problem described by Henry5, but I'm signed in to iCloud with my AppleID which is not the same as my Mobile Me/iCloud email. I keep being asked to create an account (which it won't allow me to do since the account already exists) but no where do I see an option to use the existing account. I also tried logging out with my AppleID account, and using the iCloud email, but that doesn't work.
    I just want to sync my notes and mail... this is really irritating!

  • Dear sir i buy iphone4s with my friend but he forget icloud email and icloud password so how can i reset it phone now it 1step situation

    dear sir i buy iphone4s with my friend but he forget icloud email and icloud password so how can i reset it phone now it 1step situation

    Without the Apple ID and password the phone was originally activated with, you will not be able to activate the phone. No one here can help you, and neither can Apple. So, unless you or your friend can remember that ID, you will never be able to activate the phone.

  • How to use FM SO_DOCUMENT_REPOSITORY_MANAGER send mail with CC.

    Dear Experts:
    Please help me. How to use FM SO_DOCUMENT_REPOSITORY_MANAGER send mail with CC.
    My Program code is as follow:
    *Send the mail.
    tb_receipients-recnam = 'BAITZ'.
    tb_receipients-recesc = 'B'.
    tb_receipients-sndex = 'X'.
    tb_receipients-att_fix ='X' .
    APPEND  tb_receipients.
    CALL FUNCTION 'SO_DOCUMENT_REPOSITORY_MANAGER'
      EXPORTING
        method       = wa_method1
        office_user  = wa_owner
        ref_document = wa_ref_document
        new_parent   = wa_new_parent
      IMPORTING
        authority    = wa_authority
      TABLES
        objcont      = tb_objcnt
        objhead      = tb_objhead
        objpara      = tb_objpara
        objparb      = tb_objparb
        recipients   = tb_receipients
        attachments  = tb_attachments
        references   = tb_references
        files        = tb_files
      CHANGING
        document     = wa_document
        header_data  = wa_header.
    endform.                    " send_mail
    By the why, tb_receipients-recnam = 'BAITZ'. What's the meaning of 'BAITZ'? Thanks!

    you can use FM SO_NEW_DOCUMENT_SEND_API1
    WA_RECV TYPE SOMLRECI1,
    IT_RECV TYPE STANDARD TABLE OF SOMLRECI1.
    wa_recv-receiver = 'TO email address'.
    wa_recv-rec_type = 'U'.
    wa_recv-com_type = 'INT'.
    APPEND wa_recv TO it_recv.
    CLEAR wa_recv."To Recipient
    wa_recv-receiver = 'CC email address'.
    wa_recv-rec_type = 'U'.
    wa_recv-com_type = 'INT'.
    wa_recv-copy = 'X'.
    APPEND wa_recv TO it_recv.
    CLEAR wa_recv. "CC Recipient
    wa_recv-receiver = 'BCC email address'.
    wa_recv-rec_type = 'U'.
    wa_recv-com_type = 'INT'.
    wa_recv-blind_copy = 'X'.
    APPEND wa_recv TO it_recv.
    CLEAR wa_recv. "BCC Recipient

  • HT2155 I want to use hotmail as my email not icloud and need to connect new ipod to the same account as my ipod nano

    I want to use hotmail as my email not icloud and need to connect new ipod to the same account as my ipod nano

    Just setup the iPod with your Hotmail account email address/Apple ID
    The add the Hotmail email account to Settings>Mail

  • HT4759 how do i set up an account with icloud

    how do i set up an account with icloude?

    Setup iCloud on iPhone.
    http://www.apple.com/icloud/setup/ios.html
    Once that's done you can download iCloud for Windows and use it on your PC, if you have Win7 or Win8

  • Emailing with iCloud from a foreign country

    With iCloud can I email using a WiFi connection other than the server that my home WiFi uses?

    Yes, you can use your iCloud email with any Wi-Fi connection.

  • How to use the same OC4j server with different port number

    How to use the same OC4j server with different port numbers..?
    I have to OC4J installed on my machine on different hard disk drives....
    I want to be able to run both the server simultaneously..?
    is it possible ..it yes then how..?
    for that i have changed the port number of one server...
    but when i am trying to start the other server with different port number..it says that JVM -Bind already...
    Is there any clues...?
    Nilesh G

    In the config directory:
    default-web-site.xml: Change the port the HTTP listener listens on
    jms.xml: Change the port the JMS service listens on
    rmi.xml: Change the port the ORMI listener listens on.
    Or, you can add another web-site.xml file, and deploy your applications to 1 server, and bind the web applications to the different web sites. This way you only have to deploy your applications to 1 place.
    Rob
    Oracle

  • I am unable to sync my iCloud email with the built in Windows 8.1 mail app

    I can not sync my iCloud email with the built in Windows 8.1 mail app. I've looked on Apple's website and followed instructions for entering the mail settings but every single time I have tried it will not connect. Any ideas?

    This windows 8 app can sync with iCloud/Google calendar.
    http://apps.microsoft.com/windows/app/winpim-calendar/08436f52-dded-44a5-9508-c2 b22235ac1d

Maybe you are looking for