Sending mail to group... help!

I have created a group in Address Book... Some of the people have two or more email addresses in Address Book (home, school, work, etc.). When I go into Mail, and put the group in the "To:" box, all the names appear... but Mail automatically defaults to the first email listed for each person. Instead of selecting each person in the message, can I easily set the "primary" email address for each person. For example, I want my particular group to only send to the ".edu" addresses of each person. How can I easily change this?
Thanks for the help!

Copied from Address Book Help.
If group members have multiple email addresses, you can choose which address you want to use when sending mail to the group. Select the group, then choose Edit > Edit Distribution List. Select which of the members' addresses you want to use.

Similar Messages

  • Has anyone found a solution to sending mail to groups in Mavericks? I've been given 2 approaches - 1 to type user name group into address and the other to go to address book and right click on group. Neither are satisfactory. Does anyone have a solution?

    Has anyone found a solution to sending mail to Groups in Mavericks? I've been given two solutions - neither are satisfactory. One is to type name of group into address line, the other is to go to address book and right click on group.

    thanks a lot for your kind help... saved me a lot of time and effort, could not believe it at first that the process is so simple but once i followed the steps it worked fine. appreciate your help.

  • Sending mail to GROUP ID when a process chain fails.

    Hi All,
    Can one suggest me, how to send a failure/success mail to a Group mial id when a process chain fails.
    I am awere about sending mails to individual mail id's when a any process fails or succed. I want to know the group ID creation part & how to tag the same SOCT.
    Thanks in advance.
    BR,
    Kiron.

    hi,
    The Distribution List/Group_id is created in SO23 transaction.
    hope it is helpful to u
    thanks

  • Send mail to group

    Having trouble in Snow sending mail to a group. No trouble before Snow, now groups won't go into "to" with new mail when clicked. Any ideas?

    Thanks for your help with this. Doing as you suggested didn't work any differently, however it seems there isn't really a problem after all.
    I'm a little embarrassed and sorry to have wasted your time.
    I have created a dummy test group and done some experiments. It seems Apple have changed the way it works: Where before I could see a list of email addresses and edit them if I needed to, all I now see is the name of the group and there is no way to edit them.
    So forgive me for thinking it wouldn't work, but I couldn't experiment with the real group and risk it going wrong!
    I have no idea how they (Apple) are doing it but the names of the recipients don't seem to appear anywhere in the email header...
    +Mime-Version: 1.0 (Apple Message framework v753.1)+
    +To: Test Group+
    +Message-Id: <[email protected]>+
    +Content-Type: multipart/signed;+
    + micalg=sha1;+
    + boundary=Apple-Mail-25-164972374;+
    + protocol="application/pkcs7-signature"+
    +From: "xxxxxx.co.uk" <[email protected]>+
    +Subject: test email to group 002+
    +Date: Sat, 19 Sep 2009 09:47:58 0800
    This is annoying because I cannot now tailor the list of recipients. In the past I used to be able to weed out people who were legitimately in the group but shouldn't receive the email.
    Not sure If they have done this for some oddly perceived security reason: I used to Apple-X the addresses from the To: field, and Apple-V them into the Bcc: field, so recipients couldn't see the whole list of addresses or "Reply to all". Surely this was enough for the vast majority of users.
    Thanks again for your time.

  • JSP Send Mail Application, plz help

    Hi,
    I have written a jsp send mail application, but it is giving error that NoSuchProviderException. What to do? Plz help. I m sending the code as below:
    <%@ page import="java.util.*, javax.mail.*,javax.mail.internet.*" %>
    <html>
    <head>
    <title>E-Mail Us</title>
    </head>
    <body bgcolor="white" text="#003399" >
    <%
    if(request.getMethod().equals("POST") )
    boolean status = true;
    String mailServer ="SMTP_HOST";
    String fnm = request.getParameter("fnm");
    String lnm = request.getParameter("lnm");
    String facility = request.getParameter("facility");
    String subject = request.getParameter("select");
    String fromEmail = "[email protected]";
    String toEmail = "[email protected]";
    String bccEmail = "[email protected]";
    String contact =request.getParameter("select2");
    String way =request.getParameter("way");
    String messageEnter = request.getParameter("message");
    try
    Properties props = new Properties();
         props.put("mail.smtp.host", mailServer);
    props.put("mail.smtp.auth", "true");
    Session s = Session.getInstance(props,null);
    MimeMessage message = new MimeMessage(s);
    InternetAddress from = new InternetAddress(fromEmail);
    message.setFrom(from);
    InternetAddress to = new InternetAddress(toEmail);
         InternetAddress bcc = new InternetAddress(bccEmail);
         message.addRecipient(Message.RecipientType.TO, to);
    message.addRecipient(Message.RecipientType.BCC, bcc);
    message.setSubject(subject);
         message.setSentDate(new Date());
    message.setText(messageEnter);
         message.setText(way);
         message.setText(contact);
         message.setText(facility);
         message.setText(fnm);
         message.setText(lnm);
         Transport transport = s.getTransport(mailServer);
    transport.connect(mailServer, "USER", "PASSWORD");
    transport.sendMessage(message, message.getAllRecipients());
    transport.close();
    catch(NullPointerException n)
    System.out.println(n.getMessage() );
         out.println(n.getMessage());
    out.println("<br><br><br><br><center><b>"+"ERROR!!!"+"</b></center>");//you need to enter a message"+"</b></center>");
         out.println("<br><br><center><b>"+"You need to Enter a message"+"</b></center>");
    status = false;
    catch (Exception e)
    System.out.println(e.getMessage() );
         out.println("<br><br><br><br><center><b>"+"ERROR!!!"+"</b></center>");
    out.println("<br><br><center><b>"+"Your Message to " + toEmail +" and "+ bccEmail+ " failed, reason is: " + e);
    status = false;
    if (status == true)
    out.println("<br><br><center><b>"+"Your message to " + toEmail +" and "+ bccEmail+ " was sent successfully!"+"</b></center>");
    else
    %>
    <center>
    <h1>Contact Us</h1>
    <form method="post" name="mail" action="mail.jsp">
    <table border="0">
    <tr>
    <td><b>First Name :</b></td>
    <td><input type="text" name="fnm" size=24></td>
    </tr>
    <tr>
    <td><b>Last Name :</b></td>
    <td><input type="text" name="lnm" size=24></td>
    </tr>
    <tr>
    <td><b>Facility :</b></td>
    <td><input type="text" name="facility" size=24></td>
    </tr>
    <tr>
    <td><b>Subject :</b></td>
    <td> <select name="select">
              <option>-------------------------------</option>
    <option>Missing File</option>
    <option>Correction Issue</option>
    <option>Refer Us</option>
    <option>Miscellaneous</option>
    </select></td>
    </tr>
    <p>
    <tr>
    <td><b>Comments :</b></td>
    <td><textarea name="message" rows = "10" cols="50"></textarea></td>
    </tr>
    <tr>
    <td><b>Best way to contact :</b></td>
    <td>
    <select name="select2">
              <option>--------------</option>
              <option>Phone</option>
    <option>Email</option>
    <option>Fax</option>
    </select>
    <input type="text" name="way" size=24></td>
    </tr>
    </table>
    <p>
    <font face="Helvetica"><input type="submit"
    value="Submit" name="Command">
    </font>
    </form></center>
    <%
    %>
    </body>
    </html>

    Ur messaging server will not be up..
    regards
    shanu

  • Can't send mail...HELP

    Hi
    I just reasently moved, now I'm using sprint 2wire gateway to go online. I'm online I can surf and also receive mail. but I just can't send any mail.
    This is the error message I receive
    This message could not be delivered and will remain in your Outbox until it can be delivered.
    Verify that you have addressed this message correctly. Check your SMTP server settings in Mail Preferences and verify any advanced settings with your system administrator.
    the address is correct, but I'm not sure if I need to change some of my SMTP settings, since I'm using the sprint service now.
    Can anyone help me???

    This indicates you have a .Mac account which is provided by Apple.
    Most, if not all Internet Service Providers now block the use of SMTP servers that are outside of the ISP's network or not provided by the ISP on Port 25 which is the the standard or most common port used by SMTP servers to send mail.
    Some ISPs allow the use of an authenticated SMTP server only (such as the .Mac SMTP server) on Port 25 but some block its use regardless. These restrictions are part of an overall effort to prevent or restrict spam emanating from the ISP's domain.
    Something to try.
    Go to Mail > Preferences > Accounts and under the Account Information tab for your .Mac account preferences at the SMTP server selection, select the Server Settings button below. Enter 587 in place of 25 in the Server Port field and when finished, select OK to save the changed setting.
    Test if this resolves the problem.
    If not and if Sprint provides an email account and SMTP server as part of their monthly service (which they should), you will need to create and select/use Sprint's SMTP server to send mail with your .Mac account which is invisible to all recipients.

  • Why I can Send Mail Here -- Plz Help

    Hi All,
    I m trying to send Mails to multiple users with the MailerBackp.java. But it is trowing some exception in parsing the InternetAddress
    import java.util.*;
    import java.util.concurrent.*;
    public class MailerBackup {
         private final FileCollection to;
         private static ArrayList<String> emails ;
         public MailerBackup(String addressFile){
              to = new FileCollection(addressFile);
              emails = new ArrayList<String>();
              //No of remaining emails.
              int remaining = to.size();
              System.out.println("Remaining is: "+remaining);
              int noOfmailAtATime = 500;
              int counter = remaining/noOfmailAtATime;
              System.out.println("Counter is == "+counter + "   no of Mails at a time =="+noOfmailAtATime);          
              String email= "";     
              int start = 0;
              int end  = 0;
              if(to.size()> noOfmailAtATime){
                   end = noOfmailAtATime;
              }else{
                   end = to.size();
              if(counter>=1){               
                   for(int i=0; i<counter; i++) {     
                        System.out.println("i is : "+i);
                        System.out.println("Start is "+start+" and end is "+end);
                        for(int j=start; j<end; j++ ){
                             email = email + "," +to.get(j);     
                        start = end;                    
                        email = email.substring(1);
                        emails.add(email);
                        email = "";
                        if(i< counter-1){
                             end = end + noOfmailAtATime;     
              System.out.println("End is :"+end);          
              if(end < to.size()){
                   int count = 0;
                   System.out.println("Inside if");
                   for(int i= end; i<to.size(); i++){
                        System.out.println();
                        email = email + "," +to.get(i);
                        count = i;     
                   email = email.substring(1);               
                   emails.add(email);
                   email="";
                   System.out.println("End is =="+count+" and to size is "+to.size());
        public static void main(String[] args) {
            try{
                 BlockingQueue<Runnable> queue = new ArrayBlockingQueue<Runnable>(200);
                 ThreadPoolExecutor executor = new ThreadPoolExecutor(50, 50, 1, TimeUnit.SECONDS, queue);
                    if (args.length != 1) {
                         System.err.println("Usage: java ExecutorExample address_file" );
                         System.exit(1);
                  MailerBackup mailer = new MailerBackup(args[0]);
                  MailBean bean = null ;
                  MailSender sender = null;
                 long time = -System.currentTimeMillis();
                 time += System.currentTimeMillis();              
    //Here Emails is an ArrayCollection<String>, where each String consist of
    //multiple comma seperated emails .
                 for(int i = 0; i < emails.size(); i++){
                      bean = new MailBean();
                       bean.setSubject("Mail Bean Test");
                       bean.setMessage("Hi This is a Test Message, Please Ignore this Message");
                       System.out.println(emails.get(i));
                         bean.setTo(emails.get(i));
                         executor.execute(new MailSender(bean));
                 System.out.println(time + "ms");
                  System.out.println("Finished");          
            }catch(Exception ex){
                 ex.printStackTrace();
    }For sending Mails, My MailBeans send method is :
    public Message createMessage(){
             try{              
                  Message msg = new MimeMessage(session);
                   msg.setFrom(InternetAddress.parse(FROM, false)[0]);
                   msg.setHeader("X-Mailer", "VMailer");
                   msg.setSentDate(new Date());
                   if(getTo() != null || getTo() !="")
                   msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(getTo(), false));
                   if(getCc() != null || getCc() !="")
                        msg.setRecipients(Message.RecipientType.CC,InternetAddress.parse(getCc(), false));
                   if(getBcc() != null || getBcc() !="")
                        msg.setRecipients(Message.RecipientType.BCC,InternetAddress.parse(getBcc(), false));
                   msg.setSubject(getSubject());
                   msg.setText(getMessage());
                   return msg;                        
             }catch(Exception ex){
                  ex.printStackTrace();
             return null;          
        public void sendMessage(){
             try{
                  Message msg = createMessage();
                  transport.send(msg, msg.getAllRecipients());
             }catch(Exception ex){
                  ex.printStackTrace();
        }Error is while parsing the Mails.
    java.lang.NullPointerException
            at javax.mail.internet.InternetAddress.parse(InternetAddress.java:595)
            at javax.mail.internet.InternetAddress.parse(InternetAddress.java:555)
            at MailBean.createMessage(MailBean.java:123)
            at MailBean.sendMessage(MailBean.java:138)
            at MailSender.run(MailSender.java:11)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)DEBUG: setDebug: JavaMail version 1.4ea
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth true
    DEBUG SMTP: trying to connect to host "email.vsginc.com", port 25, isSSL false
            at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
            at MailBean.sendMessage(MailBean.java:139)
            at MailSender.run(MailSender.java:11)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
            at java.lang.Thread.run(Unknown Source)
    220 email.vsginc.com Microsoft ESMTP MAIL Service, Version: 6.0.3790.1830 ready at  Fri, 7 Sep 2007 09:19:00 -0400
    DEBUG SMTP: connected to host "email.vsginc.com", port: 25

    So what's in FROM?

  • Problem sending mail. Plz help me

    i need to send mails to the registered users.
    the mail server details are given as a part of it. i dont know how to use the given username/password for the mail server. using mail server name without the username and password resulted in the following exception.
    javax.mail.SendFailedException: Sending failed; nested exception is: javax.mail.MessagingException: Could not connect to SMTP host: mail.symphonicringtones.com, port: 25; nested exception is: java.net.ConnectException: Connection timed out: connect
    so how can i use the given username and password.
    regards,
    uresh

    First of all, this error is not an authentication error, it's a network error.
    The exception is telling you that java can't open a TCP socket to the given host on the given port. This is most likely due to one of two reasons:
    1. There is no process listening on that port on that host
    2. There is a firewall somewhere in between blocking tcp traffic
    First resolve the connection issue. To test if you are able to connect, just try to telnet in on port 25:
    telnet mail.symphonicringtones.com 25
    I just did this and got:
    220 helena.eroute.net ESMTP Sendmail 8.12.10/8.12.10; Thu, 18 Nov 2004 03:47:36 +1300
    So this means either it wasn't up when you tried, or your firewall is blocking it.
    Once you have solved this, then tackle your authentication issues. In order to authenticate you need to create a javax.mail.Authenticator instance, then use this when you create the javamail session.
    See:
    http://java.sun.com/products/javamail/javadocs/javax/mail/Authenticator.html
    and
    http://java.sun.com/products/javamail/javadocs/javax/mail/Session.html#getInstance(java.util.Properties,%20javax.mail.Authenticator)

  • How do I send mail to Groups now I have installed Maverick?

    I don't appear to be able to Mail Groups ( set up in Contacts) since installing Mavericks.

    I had the same problem this morning.  Here's what APPLE help said:
    Open Address Book from the Dock
    Hold down CTRL key and then click on your group.
    The option to "send email"  or "export...." should be there and click on it.  A new email will appear with your group names.
    If you have "right click" enabled, open Address Book, and right click on your Group.  The same window "export or send email" should appear.  Click on send email.
    Hope that works for you.  It helped me.

  • How to send mail to groups or distribution lists

    Ok so what appears to be a rather large problem with the Apple Mail Server. the complete lack of being able to create a group in workgroup manager and then have that group as an email account that when email is sent to the group name the mail is then sent on to all the members.
    Now i know you can do it with postfix alias's but thats not the most user friendly way for users to administer their groups and DL's. Now OS X Server does have mailman mainling lists installed and this will do exactly what i want but it needs a few changes to stop behaving like a list and behave like a group or DL.
    I made a PDF with the settings you need to change here
    http://www.filefactory.com/file/61ad89/
    its very dodgy but hopefully gets the information accross. I hope apple address this issue in 10.5 as this is a serious issue when trying to incorporate a apple mail server in an enterprise environment.
    any questions you can email me on calum.h@[nospam]gmail.com
    Cheers,

    Sadly enough this is still behaving like a mailing list and it doesn't show any corelation to acting as a DL and working off of a system defined group.
    There is little hope that apple will address this issue unless there is sufficient demand (there isn't at this time) and an available GNU GPL software solution already exists because they are not going to spend the time/money to create one from scratch.
    Since mailman is python based it should be fairly easy to add the functionality you require by hacking the mailman source and have it act on group ID's rather than obtain a list of users.
    If you tar up your existing /usr/share/mailman and /var/mailman (so you can restore when you're done), then edit the '.pyc' files in /usr/share/mailman to get the functionality you require, once you have this, tar up the /usr/share/mailman, send it to me, restore your backed up settings, send me the modified mailman archive and I'll fix it so that you can have both functionalities in mailman from the create command and a seperate interface to access the LD lists for manipulation.
    I just don't want to do all of the work.

  • Can't Send Mail to Group

    Hi,
    I am having a problem sending a message to a Group in my Address Book-- I get this error message: "[SUSPEND] The mailbox is currently unavailable - please contact correspondent directly." It then prompts me to choose another SMTP server.
    Since I am having no other problems sending or receiving mail, my guess is that there is something wrong with my group, or an address in my group. A note; I put myself in the group-- is that a no-no?

    All internet service providers with the email account and SMTP server the ISP provides along with email account providers only have sending limits/restrictions for all personal/non-business email accounts.
    For the email account and SMTP server provided by my ISP, there isn't a number of recipient's per message restriction but there is a total number of recipients for all messages sent in a 24 hour period restriction which can be exceeded with a single message.
    You must wait until the 24 hour period expires which I believe is at midnight your time or whenever the 24 hour period begins/ends or if you are also accessing an email account and SMTP server provided by your ISP used for connecting to the internet with Mail, you can select/use your ISP's SMTP server to send messages with your .Mac account.
    These restrictions are part of an overall effort to prevent spam and bulk spam mailings emanating from the ISP's or email account provider's domain.

  • Cannot Send Mail - Error, Need help!

    I can not send e-mail. Error message reads,
    "The recipient "[email protected]"was rejected by the server."
    Initialy I was getting an error message about "Authentication" but when I took User Name and Password for SMTP, that error disappered, but now I'm getting the above message.
    Did anyone figure out the trick to get around this and send e-mails out?
    eMachine Windows XP
    eMachine   Windows XP  

    AlexMaeda,
    This article has more information:
    http://docs.info.apple.com/article.html?artnum=305634
    As for an email provider allowing customers to relay outside of their network, many email providers, set up an authenticating SMTP server on different port. The article above includes information on specifying the port to use.
    For example, .Mac accounts can use port 587 as discussed in this article:
    http://docs.info.apple.com/article.html?artnum=75124
    You may want to check with your email provider if they offer an authenticating smtp server for people who are traveling or using mobile devices. Many do so without any additional cost, some may charge for access to that service.
    Hope this helps,
    Nathan C.

  • Sending mail problem (please help)

    I have downloaded all necessary components javamail-1_2.zip and jaf1_0_1.zip. I included them in my classpath too (activation.jar and mail.jar). I used Exchange Server 2000 as smtp server. But when i try sending an email the message appears like this:
    sending error cannot relay for sending [email protected]
    When i tried the same code in my ISP (www.mycgiserver.com) it work very fine. Here is the code. Where is the problem? Please help me...
    <%
    // Take massege properties
    String mBody = request.getParameter("mBody");
    String from1 = request.getParameter("from");
    String to1 = request.getParameter("to");
    String subject = request.getParameter("subject");
    Properties props = new Properties();
    props.put("ipNo.........:25", "smtp.mail.blah.com");
    Session s = Session.getInstance(props,null);
    Message message = new MimeMessage(s);
    InternetAddress from = new InternetAddress(from1);
    message.setFrom(from);
    InternetAddress to = new InternetAddress(to1);
    message.setRecipient(Message.RecipientType.TO, to);
    message.setText(mBody);
    message.setSubject(subject);
    Transport.send(message);
    %>

    the problem i feel is in your smtp relay and probably not in ur code . some smtp relay servers are configured such that they relay only on authentication or from a specific IP or from a specific subnet mask only to prevent spammers . check out the info on ur local relay server and also see other postings specific on relay ....that shud be of help i guess

  • Send mail to group--not happening...

    I've set up a group in Address Book.
    Then when I try to send a message to them, all names of the group appear in the TO: section of the mail header....but then only one person out of the group actually gets sent the mail.
    Odd...is this a bug or am I not doing something correctly.

    As a first step I would delete the group in AB, recreate it and test again.
    let me know if you get the same behavior.

  • Regarding sending mails to group of users from ABAP program

    Hi,
    I have a program which sends Email's to group of users.
    And code for that purpose is written as below.
    <b>* Insert distribution list name into i_send
      i_send-receiver = 'TEST-DIST'. "Distribution List</b>
    Can anybody tell me where the mail id's[Group of] will be given for this purpose.
    TEST-DIST will be having set of mail id's where does i can see them and change.
    If anybody knows please post!
    Thanks in advance.
    Thanks & Regards,
    Prasad.

    Hi,
    I got the issue.
    It will be in SO01.
    Where we can give Mail ID's for Shared/Private Distribution List(s).
    Thanks,
    Prasad.

Maybe you are looking for

  • Error -1202 while creating a profile in Ping in iTunes 10

    I looked this up and most people have had this error when trying to redeem gift cards. That is not my issue. I am just trying to create a Ping profile and get this error message blocking me from doing so. Any idea what I need to do to fix this?

  • Display of serial number in the report

    Hi experts,    I wanted the serial number in my report based on plant .I am getting it based on my sub divisions of plant .Also i wanted  this column as the first while dispplayed in the re[port. can anyone please suggest me a solution for this issue

  • How to find standard print programs for ADOBE forms

    Hi All, My question is how to find the standard SAP print program for a SAP provided ADOBE form. For example - how to find what is the satndard SAP provided print program for the ADOBE form for payment advice 'F110_AVIS_INT'. As by default in the tra

  • Macbook shutdown problems

    Just got my macbook and have been using it for about a week. It has been working just fine until recently where for some reason the jarring noise at start up won't actually sound, and when I attempt to shut down the computer...it just shows the backg

  • Dynamically create varying number of buttons

    Hi. The website I'm currently working on has an object gallery. Whenever the user clicks one of the objects, it zooms in and displays a sub-gallery with other images of said object. The images that make up these galleries are loaded into dynamically