How can I send a message to multiple contacts using "groups".

How can I send a message to multiple contacts using "groups".
It was easy on my sony ericssonn....do i need to download an app?

There is no group send option like you are looking for.
To send to a group you have to pick each person you want to send to and send as a group that way. Then don't delete that SMS thread and you can reuse it again later.
As for an app, well SMS works via your carrier and the OS, not something an App can do unless the app send the data to them (a third party) and then they relay it to the carrier. Do you really want to be sending your SMS to some 3rd party first?

Similar Messages

  • How can I send an email to multiple contacts at once and have them not able to see the list or emails of the other persons included on the email?

    Im trying to send one email to a list of people from my contact list but don't want them to be able to see who all is on the email list.

    You use BCC instead of TO when addressing the message.
    BCC = Blind Carbon Copy
    The easiest way to do this is using the Contact Sidebar in the Write window. Press F9 to turn it on when a Write window is open.
    Select all the contacts for the message. Hold the control key while clicking the contacts to select multiples. Then use the Add to BCC button at the bottom.

  • How can I send a message from database to a J2EE application?

    How can I send a message from database to a J2EE application?
    If I have a codetable in database that has new or modified values I have to refresh the codetable in my J2EE application.
    Most effective way would be send a message to initiate a table reload from J2EE app, but I don't know how to do this.
    Now I have a background thread that regular reads the table and looks for changes.

    http://www.oracle.com/technology/products/integration/bam/10.1.3/TechNotes/TechNote_BAM_AQ_Configuration.pdf
    This document details how to create triggers on a table that send out JMS messages.
    In this example, the messages are going to Oracle BAM.. your message could go to your J2EE application listening to its own topic/queue.
    an alternative idea.
    you could also just cache your lookup table with something like Oracle Coherence and than try to ensure that all changes to the lookup go through Coherence, so that you won't need to do notification from the db up to the application. the application and the lookup data management tool would be using the data grid for management of the lookup table data, and the data grid (coherence) would persist the lookup data changes back to the db.

  • How can I send whatsapp messages using Siri ?

    Hi,
    How can I send whatsapp messages using Siri ? or how can I ask Siri to read my whatsapp messages ?
    thanks for help!

    kladrian wrote:
    this is not the case in particular
    Yes it is.  If it wasn't the case, then why are you asking the question to begin with?
    why everytime I have a question about a simple activity present in Android system I get in response ... "you can't sorry" !?
    1.  Because iOS is not Android
    2.  Because it's the truth, whether you like it or not

  • How can i send simple message from PC-to-another device

    How can i send simple message from PC-to-another device
    just simple message (like command String) not SMS or Data File.
    I have a computer with bluetooth and the oter side is Embeded Blue
    Thanks.

    http://www.oracle.com/technology/products/integration/bam/10.1.3/TechNotes/TechNote_BAM_AQ_Configuration.pdf
    This document details how to create triggers on a table that send out JMS messages.
    In this example, the messages are going to Oracle BAM.. your message could go to your J2EE application listening to its own topic/queue.
    an alternative idea.
    you could also just cache your lookup table with something like Oracle Coherence and than try to ensure that all changes to the lookup go through Coherence, so that you won't need to do notification from the db up to the application. the application and the lookup data management tool would be using the data grid for management of the lookup table data, and the data grid (coherence) would persist the lookup data changes back to the db.

  • How can I send an email from Sharepoint Online using sandbox solution?

    How can I send an email from Sharepoint Online using sandbox solution?
    If possible I do not want to use workflow.
    Is It possible to do it without using workflow?

    hello Steven Andrews,
    when any user sends a message using contact us page in SharePoint online.
    1. We are inserting item in Contact Us List . - This is working fine
    for anonymous users also. We have used Office365 anonymous codeplex wsp and it is working fine. Anonymous user is able to insert new record in the Contact Us List.
    2. Once, new record is inserted in Contact Us list, we want to fire email notifying thanks to the user on his email id as well as to our company x person for notification of new inquiry. 
    We tried using Workflow having impersonation step for  anonymous user but it is not working for Anonymous users. Workflow is able to sent the email if someone logged into system but not working for Anonymous user although workflow is getting started
    but not able to send email although used Imperonsation step.
    We are stuck into implementing second step.

  • How can i create  excel sheet with multiple tabs using utl file?

    how can i create excel sheet with multiple tabs using utl file?
    any one help me?

    Jaggy,
    I gave you the most suitable answer on your own thread yesterday
    Re: How to Generating Excel workbook with multiple worksheets

  • How can i send a email to multiple people on my ipad2 using the contact and group list downloaded from my iMac.  Thank you

    I am 63 yrs old and not to computer literate.  I know how to send an email to multiple people using my contact list and groups on my IMAC.  I tried using a group name downloaded to my Ipad2 from my IMac.  It does not work.  If I choose a single email address it works.  Any idea what I am doing wrong?
    Thank you for your paitence and help.
    Steve

    You are not doing anything wrong. The feature that you need is totally lacking in the built in Mail app on the iPad.
    There are a couple of third party mail apps that will let you do this ... MailShot and Group Email with Attachments. You can check them out in the App Store.

  • How can I send a message in the iPod touch 5g

    I can not send a message from iMessage how can I send messages

    Yepezlitzy123 wrote:
    I can not send a message from iMessage how can I send messages
    You do not state what happens when you try...
    See here...About Messages
    And...
    Using Messages  >  http://support.apple.com/kb/HT3529
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755

  • How can i send photos to my friends Macbook using my Macbook iMessage App

    How can i send photos to my friend who is chatting with me on iMessage ?
    My friend had uploaded his photo in his iMessenger app but i am able to see his profile photo on my iMessage app ?
    As i am a beginner in using Macbook and i was using Windows 8.1 pro ,so thats why i am facing some issues.
    Please Help me.
    Thanking You

    Hi ..
    You can use iTunes to transfer photos to your iPhone >  iOS: How to transfer or sync content to your computer

  • How can i send a MESSAGE from an object to another object?

    i've following code:
    class Receiver {
         private String str = "Your message is recieved to me.";
         String sendBack() {
              return str;
    class Sender {
         public static void main(String[] args) {
              Receiver r = new Receiver();
              System.out.println(r.sendBack());
    }I'm confused with the concept of MESSAGE in java. All i gather about it is that when two objects want to communicate with each other they send messages to each other. One object is sender of message and other is its receiver.
    Here reciever object 'r' itself performs its method and does not communicate with any other object. How do i change this code into where two objects communicate with each other?

    Well the OO theory says that objects comunicate via messages, now that information must be taken as knowledge only, not for programming issues really. What you need to know is that when you need to pass any data from onw object to another you can send them via parameters of defined methods.
    For example you have an Object called R of a receiver class and that object needs to pass a String (text message) to another object. you can do it via a method.

  • How can i send a message to specific user?

    I know I need to use ptp messaging when sending a personal message to a particular person.
    How can I specify so that the person with name mike is going to receive?

    Put in your message header in the form of name/value pairs, the knowledge you want to use to control the consumer flow of your messages. For example (personName, Mike). Then setup a selector on the consumer side with personName = 'Mike' (see the JMS spec for this, or your product dev guide). This will allow the consumer Mike to get the message.
    Now will that prevent anyone else from reading the message? No. Anyone that would not filter on the personName could consume the message. Another way of doing it (in a more complex fashion) would be for Mike to create a temporary queue, and to send the queue name to the producer in a message on a management queue define by you. This way, only the element knowing about the queue name will be able to use the queue, hence, the producer targeted by Mike, and himself. If you need to get to that extent, then you probably also want to setup the security, so that only authorized consumers and producers can connect to your queueing system.
    This forces you to allow temporary queue creation, which is sometime seen as a security risk.
    HTH
    TE

  • How can I send the messages in the CANdb file to the hardware(PXI-8464)?

            I tried to open a Vector CAN Database (*.dbc) and wanted to transmit the message of the database ,but I do not know how to achieve it ?  I want to  send the messages of Vector CAN Database (.dbc file) out through the hardware( PXI-8464) of NI device. What confused me now is that I do not know how to read the message  of  the .dbc file after improting it into labview, also I do not know use what kind of  tools  to control the progress of reading and sending. Because some part of the .dbc file is blank and needed to be filled from the Labview front pannel , so the connection between the  control (on the front pannel)and the .dbc file has to be setup, further more, I do not know how to make that out . For example,if a message in the .dbc file has a value table for a message, such as message 'SwitchStatus' that shows a 0 = open and 1 = closed, is there a way to read this value table into Labview and send it to the hardware( PXI-8464) of NI device.

    Hi
    I have tried it according to your help, but the message can not be recieved by CANoe. WHY?
    Look forward to your reply.
    Regards
    Vivian

  • How can I send a message on message?

    So, I got message when I downloaded OS X Mountain Lion. The problem is, when I try to send something it says that I can't. I'm signed in and I'm all ready to send but the problem is, the system obviously doesn't let me send. It says "Your message could not be sent. Your iMessage account is not signed in" and then i gives me the to choices "Sign in" and "Cancel"
    How can I actually make it sign in so I don't always have to text from my phone?

    HI,
    In the Messages Menu > Accounts it will tell which accounts the app has and the ticked ones will be logged in
    The same can be seen in Message Menu > Preferences> Accounts but you have to highlight each account and see if the "Enable this Account" box is ticked.
    However this does not always mean the account was successful in logging in.  (Essentially it means the account is "ON" and should login). It does not change if the account fails to log in.
    You can have an iMessages account (To Apple IDs and iPhone numbers that have been Registered and are On Line)
    The Bonjour account everyone has but is Disabled by default (LAN based Chats only)
    You may have AIM or Jabber based names and IDs
    These may or may not accept Off Line IMs.
    It could be the server (Jabber) involved does not store them.
    It could be that the person has set to Not receive them.
    See the Preferences > General Section > "When I quit Messages, set the Status to Off Line"
    This tells the Server that you are fully off line (the app "Listens"  if the computer is on otherwise)
    Although this does stop Off Line IMs it is not the same as setting it here
    https://settings.aim.com/
    Logging in to this page requires either and older @mac.com name or an actual AIM name.
    (@me.com and @icloud.com need a dual log in to me.com to allow AIM to verify the password  (iChat 6 and Messages do this dual login)
    Jabber servers  vary on this function.
    With an iMessages account you can only tell if a Contact is On line when their iMessage ID makes their name in the "To" filed in the Messages window turn Blue.
    There appears to be only one messages for Unregistered or Off line/Unavailable Contacts.
    They appear to go Red if the iPhone has no power or is without Cell Coverage or Wifi  (Same for iPad if not Wifi)
    You cannot send Off line iMessages either.
    10:01 PM      Wednesday; February 13, 2013
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How can I send out mail to multiple addressees?

    I want to send out a a mass mailing where I can begin my mail by personalisng it to  'Dear John, Jane...... or whoever.  How can I do this with using Mail?

    I Googled - I don't use Apple's Mail - and it seems that you need third-party software: this was one of the top hits - http://www.macmassmailer.com/mac-mail-group-email-list.
    Good luck,
    Clinton

Maybe you are looking for

  • How should inheritance of permissions on AD behave?

    Hi Forum members, I am not an AD expert in fact far from it. We have an in house software and we have used Active Directory to authenticate NT accounts to login to our application. In our application we can configure/setup AD groups in such a way tha

  • Been trying to rip cd's for 3 months

    I was able to rip several hundred Cd's and around October 2010 I was no longer able to. I have been following the discussions and tried all the suggestions.I uninstalled and installed i tunes several times. I checked to make sure I was able to get to

  • BLAORD, Payment term details are not updated automatically in ME31K

    Hi, Thru FM IDOC_INPUT_BLAORD, am posting contracts (IDOC type: BLAORD03). I am only passing terms of payment through E1EDK01-ZTERM. I am assuming that relevant data for the payment term will be picked up from configuration. I am not passing these va

  • How to make bs line dt field enabled in FB09

    Hi, When I enter document in FB09,I see base line date in non editable mode.How can I make it in editable mode? Is there any config involved or any field movements settings required. Can you please help in this. Thanks in advance Regards, BM

  • Need to change default bullet

    I have Indesign CS3. When I type Ctrl+Alt+8 there is a bullet (a round and small dot) appearing before the text I am typing. Is there any way to change this "default" bullet to something else using Wingdings font or so. How to make it? Thanks for you