Sending Event reminders to multiple recipients

Hello,
I have googled this and searched the forum but have not found a solution. How can I send an event reminders to multiple various people (some have iCal, some do not), with iCal? I have tried adding a group but it still selects only one email address.
Thank You

Not supported with the iPhone - at the present time anyway with no indication that it will be supported in the future.
Apple is known for doing research so right, wrong or indifferent, I doubt this is something Apple forgot to include.
The only thing you can do is provide Apple feedback via the iPhone feedback link.

Similar Messages

  • My iphone 4 says outgoing whenever i send an sms to multiple recipients.  does this mean it's still trying to send the message?

    my iphone 4 says outgoing whenever i send an sms to multiple recipients.  does this mean it's still trying to send the message?

    Perhaps someone from Apple could reply to this rather than leaving it unanswered?

  • How to use Add_Delivery_Option to send an email to multiple recipients

    I have the following code before i submit a concurrent request:
    B_Delivery_Success := Fnd_Request.Add_Delivery_Option(
    'E',                    -- EMAIL
    'Enter subject', -- SUBJECT
    '[email protected]',          -- FROM
    '[email protected]'          -- TO
    ,NULL               -- CC
    which correctly sends an email with attachment. However i need to send the email to multiple recipients. How can you enter multiple names against the 'TO' parameter. I know that i can repeat this again and again with a different email address each time, however there must be away to use this code once with multiple addresses?
    Edited by: user974582 on 09-Oct-2012 01:23

    Not sure about the API but there are other ways to achieve it i.e. through alerts.. You can refer below
    Can Concurrent Request Notifications Work With A Group Email ID [ID 1096850.1]
    Cheers,
    ND

  • TS3899 If I send an email to multiple recipients, I cannot open the individual replies on iphone

    If I send an email to multiple recipients, I cannot open the individual replies. I can see there are a few replies but have to go to webmail to see them.
    Any ideas anyone?

    ...and even email addresses can be hidden by sending to each recipient using your mail client's "bcc" or "blind copy" field instead of the "to" field.

  • Oracle Obiee - Send Obiee reports to multiple recipients

    Hello All,
    Can anyone tell me how to send Obiee reports to multiple recipients?
    I have used the ibot of Oracle Obiee. And ibot is working fine for the Creator of the ibot but it is not able to send reports to other recipients.
    When i get mail from Oracle Delivers the To section is empty and bcc section contains the creator of the ibot.
    Please help me on this.
    Thanks & Regards,
    Jiten
    Edited by: Dr.Jiten Patel on Aug 16, 2012 5:14 AM
    Edited by: Dr.Jiten Patel on Aug 16, 2012 5:15 AM

    Again, this is the Application Express forum, not the OBIEE forum.

  • Sending Text Messages to Multiple Recipients

    Is there a way to send a text message to multiple recipients? I've been trying to figure it out for a while. I feel like this is a feature that apple couldn't have just forgotten! Anybody know?

    Not supported with the iPhone - at the present time anyway with no indication that it will be supported in the future.
    Apple is known for doing research so right, wrong or indifferent, I doubt this is something Apple forgot to include.
    The only thing you can do is provide Apple feedback via the iPhone feedback link.

  • Send e-mail to multiple recipients that are entered in a form

    Hello,
    I wonder if somebody could help me...at least with the clue to do the following.
    I have a form, with a textarea , where the people should put the e-mail addreses of all the people that, later will receive all the form data via e-mail..
    I do not know how to retrieve all these e-mail addresses from the textarea (format?) and then how to send the e-mail to multiple recipients .
    It works for one...but I do not know how to do this for several recipients...
    could you please help?

    use string tokenizer to tokenize the string and then use this in ur smtp coding
    message.addRecipients(Message.RecipientType.TO, to)
    where 'message' is object of MimeMessage
    and 'to' is array of Address
    ex:-
    Address[] to = new Address[count];
    Earlier u must be using message.addRecipient(Message.RecipientType.TO, to)
    where to is object of Address.
    Sample code:-
    suppose String posted from ur form is :-
    to = "[email protected],[email protected],[email protected]"
    StringTokenizer toAdd = new StringTokenizer(to,",");
    Address[] address=new Address[toAdd.countTokens()];     
    int j=0;
    while(toAdd.hasMoreTokens()){
    address[j]=(new InternetAddress(toAdd.nextToken()));
    j++;
    }

  • Any way to send a "forward" to multiple recipients and have each email addressed only to each individual?

    I want to forward an email to multiple recipients, but instead of putting them all in BCC:, I want all the recipients to get the forward addressed just to them so it looks personalized.  Any way to do this?

    I'm assuming that I would have to "import" my old drive into the library
    You don't import anything since your library is the same as it was. All those items are still in iTunes in the same location. The ONLY thing different is iTunes prefs -> Advanced.
    Or am I wrong and it will have my previous media folder still in the library, and anything new would be put in the new media folder?
    Yes & yes. Everything in iTunes will still be in iTunes, stay in the same location it is now and iTunes will use it from there.
    Anything new added to iTunes will go to the location you set in iTunes prefs -> Advanced.

  • How to send a packet to multiple recipients?

    I'm writing a small chat program in java. What I have so far for the server, is this:
    import java.io.*;
    public class datagramServer {
         public static void main(String[] args) throws IOException {
              new datagramServerThread().start();
    }datagramServerThread class:
    import java.net.*;
    import java.util.*;
    import java.io.*;
    public class datagramServerThread extends Thread {
        protected DatagramSocket socket = null;
        boolean listening = true;
        datagramProtocol DGP = new datagramProtocol();
        public datagramServerThread() throws IOException {
         this("datagramServerThread");
        public datagramServerThread(String name) throws IOException {
            super(name);
            socket = new DatagramSocket(4445);
        public void run() {
            while (listening) {
                try {
                    byte[] buf = new byte[256];
                    DatagramPacket packet = new DatagramPacket(buf, buf.length);
                    socket.receive(packet);
                    String processSendBack = new String(packet.getData());
                    String sendBack = DGP.processInput(processSendBack);
                    buf = sendBack.getBytes();
                    InetAddress address = packet.getAddress();
                    int port = packet.getPort();
                    packet = new DatagramPacket(buf, buf.length, address, port);
                    socket.send(packet);
                catch (IOException e) {
                    e.printStackTrace();
            socket.close();
    }And the datagramProtocol class:
    import java.io.*;
    import java.net.*;
    public class datagramProtocol {
         String output;
         public String processInput(String toProcess) {
              output = toProcess;
              return output;
    }Pretty simple, and it works great, if you just want to chat with yourself... ;)
    The client is really simple, just sends and receives, nothing fancy.
    What I want to know, is how would I send anything any client sends, to every other connected client?
    btw, I was wondering if it's good coding practice to put everything into a seperate class like that. I probably could've put everything into one, but it's a little neater in seperate files.
    Thanks,
    Alex

    Can a publish/subscribe sort of model be used in it's
    place? Or how about just a listener model rather
    than pushing each request? This way the clients just
    register themselves and listeners and you merely
    propogate an event. There would be no need to keep
    track of each IP, etc.
    Just thinking out loud here... :)Well, as I understand, on a publish/subscriber model, the publisher has to keep some sort of reference to the listener in order to send the events when they happen.
    Keeping the sockets to the clients seems to me as good as a reference can be on a TCP/IP connection short of using RMI to do that, but if the client/server must be decoupled from the language what I sugested is a publish/subscriber model. The clients are the subscribers, they ad themselves as such upon connecting to the server, the server wich is the publisher store their reference as subscribers by keeping the socket where they agreed upon communicating.
    When the publisher has a new message to be published it walks the list of references giving them the event, wich is the message posted.
    Sure it could be done with events just notifying the arrival of new messages but it would just complicate the model beyond the need. For the client would have to wait for the event and them send a request asking for the actual message, in order to do such a system he would have to create a simple protocol of comunication between the client and the server.
    May the code be with you.

  • Faxing with Tiger.  sending same fax to multiple recipients

    I have a G4 titanium notebook and just upgraded to Tiger. Under Panther, when I sent faxes, I would be able to just type the first few letters and the discription and fax number would come up and it would fax without problems. Now when I do this under Tiger, the fax number and the description will come up, but it will not fax unless I remove all of the letters from the fax number. Also, I often have to send the same fax to multiple numbers at the same time. Under Panther, it was a snap, just put all the number in the same line separated by a comma and the fax would be sent to as many numbers as possible. Under Tiger, it will only send to the first number listed. Why did they make the fax program less functional on the upgraded OS?

    Are you using a Fax program within Tiger? I have been using FaxStfPro made by
    Smith Micro, and now with Tiger, OS10.4.8 operating with DSL, I find i cannot send a fax unless I get a separate phone line with filter to connect to my Power Book G4. That is not an easy solution here because of wiring distance.
    If a Fax program existed within Tiger that could be used even with DSL, that would solve my problem. What is Mac Fax? I have not heard of it before,
    Any guidance you might provide would be greatly appreciated.
    Randolph McCreight

  • Sending a message to multiple recipients

    I want to send the same e mail to everyone in my contacts list, Is there any way of selecting all my contacts or do i have to check the box next to everyones name in order to achieve this?
    Regards Peter

    You can not select all contacts. You will need to select them one at a time and add them to the email. If you do this on a regular basis you could set up a Group Contact and drag your contacts into that group.
    You can not have more than 49 contacts in your list or the message will not send.

  • Sending an email to multiple recipients

    I'm trying to send to an email to to a few hundred addresses (a gig announcement- I'm a musician), and Apple Mail won't let me. The addresses are in a group in the Address Book. I use to do this on my G5, but this computer won't allow it, even though the settings in Apple Mail are identical. I was on the phone with Earthlink and they were stumped. Any ideas??

    It's gone
    No Address Icon in Yosemite Email App
    But send Apple feedback
    Go to this site:
    Apple Product Feedback
    http://www.apple.com/feedback/
    So select a product:
    In  your case, Mail, by going here
    http://www.apple.com/feedback/mail.html
    Select appropriate feedback and give them your best recommendations.

  • IPhone 5 iOS7 - Sending text to multiple recipients.

    I have recently upgraded from my trusty iPhone 3GS to an iPhone 5 with iOS7. The phone is locked to the UK O2 Network.
    When abroad multiple recipient text could be sent incurring a European Text Message Cost of 6p per recipient. So far so good. Idid not use data when I was abroad as I had the Roaming option off.
    When back in the UK I tried to send Multiple Recipeint texts only to find there was a problem.
    The recipeint received a message saying that I had sent them a Media Message without the text being included. I incurred a 33p cost per multiple text instead od the texts being free.
    I have never paid for texts before as I am on an unlimited text tariff.
    Any suggestions other than sending each text individually.
    O2 seem to be aware of this issue.
    Is it an iOS7 issue, or an iPhone 5 issue?
    This was never a problem with my iPhone 3GS.
    Many thanks.

    I have just read this on the Apple Site:
    "iOS: Understanding group messaging
    Learn about group messaging.
    You can send a message to multiple recipients using SMS, MMS, and iMessage.
    Group messaging allows you to send messages to multiple people and have any responses delivered to everyone in the group. Group messaging works with iMessage and MMS.
    If you send a message to multiple recipients without group messaging in use by the sender and all recipients, an individual message will go to each recipient using either SMS or MMS. Responses to these messages will be delivered only to the original sender in separate messaging threads."
    This would suggest that Multiple Recipient Text do not necessarily need MMS.
    It would seem that unless MMS is prevented then Multiple Recipient Texts will default to MMS.
    I have switched off data and have been able to send Multiple Recipient Texts which the recipient has been able to read as texts.

  • Mail issue: not sending (addressed to multiple recipients in BCC

    Hi,
    I am having trouble sending a message to multiple recipients in the BCC field.  I am sending to myself in the To: box and many others in BCC.  It is not sending the message, either through my Mail program, nor through iCloud mail.  iCloud mail gives me  "Cannot send message.  This message cannot be sent at this time." messge, but no explanation why.  (iCloud mail seems to be working normally according to on-line status report).  My Mail program give me a, "Cannot send message using the server smtp.me.com:(username)
    The server "smtp.me.com" did not recognize the following recipients:  [followed by long list of recipients all separated by commas] though it doesn't list all the recipients in the field. 
    Could it be that I just have too many in the field?
    HELP!  I'm in a time-crunch on this one.
    It did send a test e-mail to me, just fine.  No other reipients listed.)

    AAARGH!  Nevermind!  I found the answer!  over the 100 recipients-at-a-time limit.

  • Unable to send emails to multiple recipients through oracle storedprocedure

    I have the email code working with single email in the To address but I am looping through the table and getting a semicolon separated emails and assining to_mail and I am unabl to send any emails to any users in To address but works for cc_address users. I am getting the following error in the stored procedure when compiling. Please help if any suggestions or any one came accross this issue. Thanks.
    ORA-29279: SMTP permanent error: 501 #5.1.1 bad address @abc.com
    ORA-06512: at "SYS.UTL_SMTP", line 29
    ORA-06512: at "SYS.UTL_SMTP", line 110
    ORA-06512: at "SYS.UTL_SMTP", line 252
    ORA-06512: at "abc_owner.SendMail", line 101
    ORA-06512: at line 10

    900045 wrote:
    I have the email code working with single email in the To address but I am looping through the table and getting a semicolon separated emails and assining to_mail and I am unabl to send any emails to any users in To address but works for cc_address users. I am getting the following error in the stored procedure when compiling. Please help if any suggestions or any one came accross this issue. Thanks.
    ORA-29279: SMTP permanent error: 501 #5.1.1 bad address @abc.com
    ORA-06512: at "SYS.UTL_SMTP", line 29
    ORA-06512: at "SYS.UTL_SMTP", line 110
    ORA-06512: at "SYS.UTL_SMTP", line 252
    ORA-06512: at "abc_owner.SendMail", line 101
    ORA-06512: at line 10when all else fails, Read The Fine Manual
    http://docs.oracle.com/cd/E11882_01/appdev.112/e25788/u_smtp.htm#i1002798
    RCPT Function
    This subprogram specifies the recipient of an e-mail message.
    "To send a message to multiple recipients, call this routine multiple times. "
    "Each invocation schedules delivery to a single e-mail address."

Maybe you are looking for

  • Xbox Networking

    OK here's my situation: I'm using VZW internet by USB on my laptop. I'm looking to hookup to Xbox Live. I would like to use my laptop to be the network server. In my Network Connections I went threw the setup wizard for XP to set it up. At the end it

  • Conversion of systems

    Hi Experts, We have created business components as our sender and receiver. Now to transport these components to the other systems( quality,production...) which have names like DMD_DEV and WMB_DEV. while moving to other systems , we  want the names o

  • Copy and Paste in a photo

    I have been trying to copy a small area to paste in a small area of my picture using Photoshop cs5. When I select the size I need, photoshop tells me there is nothing selected to copy. I was able to do this once but now it won't work for me again. An

  • GoPros and Adobe Photoshop Lightroom

    If I have a GoPro Hero4 or Hero3, 1. Are GoPro cameras compatible with Adobe Photoshop Lightroom and 2. Is the GoPro camera resolution high enough to have detailed, quality pictures

  • Blue Screen during start up

    just conducted a software update and during the restart the computer screen stays blue. I tried restarting a few times but the blue screen is here to stay.