E-mail to a group

I've created a Group in Address Book. After drafting an e-mail, I enter the group name in the TO box, but it disappears a second later, leaving a blank TO box. What happened, and how do I get the Group name to "stick" so that I know the e-mail is going to the group? 

We thought so too.
Our new app, MailShot, uniquely lets you create and manage groups that you can use in ANY app's email, just as easily as if was a single contact- including Mail (as opposed to needing to use a different app to email out)
Check it out on http://www.itunes.com/apps/soluble/mailshot. Its currently free, but you can handle multiple groups and email over 40 people at once (with an in-app upgrade!)
Peter

Similar Messages

  • Starting just today, when I send an e-mail to a group of friend using BCC, Thunderbird tacks on [Bulk] to my subject. How do I prevent that?

    Starting just today, when I send an e-mail to a group of friend using BCC, Thunderbird tacks on [Bulk] to my subject. How do I prevent that?
    Bill Gray
    [email protected]

    Thunderbird does not modify subject lines. Check your antivirus software or email providers spam filters.

  • HT6030 I would like to send an e-mail to a group of people I have the group created, but when I drag it to bcc or to it will not attach. can anymon help me with this?

    Help I would like to send an e-mail to a group of people,  I have the group created, but when I drag it to bcc or to- it will not attach. can anymon help me with this?

    In a new email message window start to type the name of the Group you have in Contacts/Address Book in the 'To' field - it should self-complete when it recognises the name.
    (Note: this only works with 'normal' Groups and not Smart 'Groups').

  • Cannot send mail to a group if hiding addresses

    I can't send mail to a group unless I show all member addresses. If I uncheck this preference I recieve the following error dialogue:
    This message could not be delivered and will remain in your Outbox until it can be delivered.
    Sending the message content to the server failed.
    Very frustrating and infuriating for my reciepients. Any ideas?
    MacBook Pro   Mac OS X (10.4.9)   2.16 GHz Intel Core Duo - 1GB 667 MHz RAM - 100GB

    Thank you Klaus,
    In mail help, Bcc is indicated as an alternative to unchecking the box saying show names in group when sending. Any ideas as to why the preference doesn't work?
    MacBook Pro   Mac OS X (10.4.9)   2.16 GHz Intel Core Duo - 1GB 667 MHz RAM - 100GB

  • Trouble composing e-mail to address groups stored in iCloud.

    Hello,
    Here's the synopsis of my problem:
    My address book contacts and groups are being stored in iCloud.
    If I vew a group in Address Book and go to the Edit menu, "Edit Distribution List" is greyed out.
    If I right click a group name and select the option to send e-mail to that group, I see a new message window but the address headers are empty.
    If I go to the "to" field in a new message and try to type in a group name, it will autocomplete the name for me, but the moment I let it complete the name for me, the name disappears and I'm left with an empty "To:" header again.
    I'm running Mac OS X 10.7.2 Lion.   Address Book version 6.1 (1062).   Mail version 5.1 (1251/1251.1).
    It could very well be that this doesn't have anything to do with iCloud at all, but this seemed to be a reasonable place to start looking.    Any help appreciated.

    As soon as I posted the question, I found this related discussion which seems to contain a workaround:
    https://discussions.apple.com/thread/3387191?start=15&tstart=0
    It appears you need to have at least one group "On my mac" before you are allowed to use groups in iCloud.   It's a bug.

  • How to send a mail attachment to group of users

    i have a group ZTACT TEAM Which has 10 mail ID's. I want to send mails to those 10 ID's in ZTACT team . Plz tell me ..How to do this to send mails to the group.....
    Thanks
    Srinivas

    Hi ,
    try this code.
      DATA: LD_ERROR    TYPE SY-SUBRC,
             LD_RECIEVER TYPE SY-SUBRC,
             LD_MTITLE LIKE SODOCCHGI1-OBJ_DESCR,
             LD_EMAIL LIKE  SOMLRECI1-RECEIVER,
             LD_FORMAT TYPE  SO_OBJ_TP ,
             LD_ATTDESCRIPTION TYPE  SO_OBJ_NAM ,
             LD_ATTFILENAME TYPE  SO_OBJ_DES ,
             LD_SENDER_ADDRESS LIKE  SOEXTRECI1-RECEIVER,
             LD_SENDER_ADDRESS_TYPE LIKE  SOEXTRECI1-ADR_TYP,
             LD_RECEIVER LIKE  SY-SUBRC.
      DATA:   T_PACKING_LIST LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
              T_CONTENTS LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
              T_RECEIVERS LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
              T_ATTACHMENT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
              T_OBJECT_HEADER LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
              W_CNT TYPE I,
              W_SENT_ALL(1) TYPE C,
              W_DOC_DATA LIKE SODOCCHGI1.
      LD_EMAIL   = P_EMAIL.
      LD_MTITLE = P_MTITLE.
      LD_FORMAT              = P_FORMAT.
      LD_ATTDESCRIPTION      = P_ATTDESCRIPTION.
      LD_ATTFILENAME         = P_FILENAME.
      LD_SENDER_ADDRESS      = P_SENDER.
      LD_SENDER_ADDRESS_TYPE = P_SENDER_ADDRES_TYPE.
    * Fill the document data.
      W_DOC_DATA-DOC_SIZE = 1.
    * Populate the subject/generic message attributes
      W_DOC_DATA-OBJ_LANGU = SY-LANGU.
      W_DOC_DATA-OBJ_NAME  = 'SAPRPT'.
      W_DOC_DATA-OBJ_DESCR = LD_MTITLE .
      W_DOC_DATA-SENSITIVTY = 'F'.
    * Fill the document data and get size of attachment
      CLEAR W_DOC_DATA.
      READ TABLE IT_ATTACH INDEX W_CNT.
      W_DOC_DATA-DOC_SIZE =
         ( W_CNT - 1 ) * 255 + STRLEN( IT_ATTACH ).
      W_DOC_DATA-OBJ_LANGU  = SY-LANGU.
      W_DOC_DATA-OBJ_NAME   = 'SAPRPT'.
      W_DOC_DATA-OBJ_DESCR  = LD_MTITLE.
      W_DOC_DATA-SENSITIVTY = 'F'.
      CLEAR T_ATTACHMENT.
      REFRESH T_ATTACHMENT.
      T_ATTACHMENT[] = IT_ATTACH[].
    * Describe the body of the message
      CLEAR T_PACKING_LIST.
      REFRESH T_PACKING_LIST.
      T_PACKING_LIST-TRANSF_BIN = SPACE.
      T_PACKING_LIST-HEAD_START = 1.
      T_PACKING_LIST-HEAD_NUM = 0.
      T_PACKING_LIST-BODY_START = 1.
      DESCRIBE TABLE IT_MESSAGE LINES T_PACKING_LIST-BODY_NUM.
      T_PACKING_LIST-DOC_TYPE = 'RAW'.
      APPEND T_PACKING_LIST.
    * Create attachment notification
      T_PACKING_LIST-TRANSF_BIN = 'X'.
      T_PACKING_LIST-HEAD_START = 1.
      T_PACKING_LIST-HEAD_NUM   = 1.
      T_PACKING_LIST-BODY_START = 1.
      DESCRIBE TABLE T_ATTACHMENT LINES T_PACKING_LIST-BODY_NUM.
      T_PACKING_LIST-DOC_TYPE   =  LD_FORMAT.
      T_PACKING_LIST-OBJ_DESCR  =  LD_ATTDESCRIPTION.
      T_PACKING_LIST-OBJ_NAME   =  LD_ATTFILENAME.
      T_PACKING_LIST-DOC_SIZE   =  T_PACKING_LIST-BODY_NUM * 255.
      APPEND T_PACKING_LIST.
    * Add the recipients email address
      CLEAR T_RECEIVERS.
      REFRESH T_RECEIVERS.
      LOOP AT TB_EMAIL.
        T_RECEIVERS-RECEIVER = TB_EMAIL-EMAIL.
        T_RECEIVERS-REC_TYPE = 'U'.
        T_RECEIVERS-COM_TYPE = 'INT'.
        T_RECEIVERS-NOTIF_DEL = 'X'.
        T_RECEIVERS-NOTIF_NDEL = 'X'.
        APPEND T_RECEIVERS.
      ENDLOOP.
      W_SENT_ALL = 'X'.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = W_DOC_DATA
                PUT_IN_OUTBOX              = 'X'
    *            SENDER_ADDRESS             = LD_SENDER_ADDRESS
    *            SENDER_ADDRESS_TYPE        = LD_SENDER_ADDRESS_TYPE
                COMMIT_WORK                = 'X'
           IMPORTING
                SENT_TO_ALL                = W_SENT_ALL
           TABLES
                PACKING_LIST               = T_PACKING_LIST
                OBJECT_HEADER              = OBJHEAD
                CONTENTS_BIN               = T_ATTACHMENT
                CONTENTS_TXT               = IT_MESSAGE
                RECEIVERS                  = T_RECEIVERS
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                OPERATION_NO_AUTHORIZATION = 4
                OTHERS                     = 99.
      SUBMIT RSCONN01 WITH MODE = 'INT' AND RETURN.
      IF SY-SUBRC NE 0.
        MESSAGE E000 WITH 'Error occurred while sending'.
      ELSE.
        MESSAGE I000 WITH 'The document was sent'.
      ENDIF.
    Notice that i am looping at T_receivers to get multiple number of receivers.
    Hope this helps you.
    Vikki.

  • Mail filling in groups from Contacts

    There is a problem with Mail filling in groups from Contacts in a way which didn't happen to me before Mavericks.
    When I now type in the first letter(s), Mail tries to auto complete, but when I have the right group in the "to" bar and press the enter-key the name disappears.
    When I type too fast for mail auto complete to keep up (already typed the whole group name) and press enter, nothing happens, the name of the group isn't replaced by the people belonging to that group.. The cursor just keeps blinking berhing the group name.
    I take it this is a bug, not by design...
    Already filed a bug report at apple.com/feedback

    The app Mail2Group, both paid and lite, makes it easer to mail to groups. There is no other good workaround except to copy addresses to a master group list/document and copy and paste.

  • Same subject Mail messages are grouped together in sent mail

    How can I get mac mail to stop grouping sent messages on the same subject together in the sent mail file?
    i went in mail- preferences viewing and turned off mark them by color, but that was no help.
    I want each message in sent mail on its own, and in the usual sent order, not grouped with other same subject sent mails.

    Nope - I have the date column clicked-- and in the date column, for say an e mail sent today- like "a pix of my new car" , it has grouped with todays e mail (you "open" it with the little triangle on the left side" all the other e mails sent last week on "a pix of my new car"

  • When I send an e-mail to a group address, from my address book, I get an error messageI get an error message that one of them is not a valid e-mail address, although I have used it alone without any problem.

    When I send an e-mail to a group address, from my address book, I get an error messageI get an error message that one of them is not a valid e-mail address, although I have used it alone without any problem.

    See https://support.mozilla.org/en-US/questions/1018363

  • Notification mail for particular group of users

    Hi,
    How to configure notification mail for particular group users in the portal, some circular posted in the KM.
    Please advise.

    Dear  kumargopalc,
    The best way to do this, is create a folder in km where you upload your files o news to this user and then create a km navigation iview to give to the user the possibility to subscribe to it, the service subscription give to the users notifications on the amendment of the folder.
    http://help.sap.com/saphelp_nw70/helpdata/en/6e/798e04b33b11d5993800508b6b8b11/frameset.htm
    Regards.

  • Can not edit mail non-universal group

    Hi all,
    After moving from Exchange 2003 to Exchange 2010, the previous distribution groups become mail non-universal groups and greyed out.  i can not edit them anymore.
    Some DGs contains some distribution groups or secutiry groups.
    I can not create  nested distribution groups anymore in Exchange 2010.
    How can I make them not greyout and I am ble to edit them?
    Thank you.

    Ok.
    So I’d use the code above and run it a couple of times, just it will error groups with group membership but the first pass will change the scope of the child group and the second should change the scope of the parent group. This is a lazy approach
    but I want to get you the code to create the DG’s ;o)
    Once you have your groups at Universal level you can make DG’s
    I use the code below to batch create DG's with prefixed names or email addresses
    Import-Module ActiveDirectory
    Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
    Connect-ExchangeServer -auto
    $GroupsWithOutEmails = @(Get-ADGroup -Filter {(mail -notlike "*")} -SearchBase 'OU=Staff,OU=Groups,OU=Live,DC=domain,DC=co,DC=uk' -Properties mail )
    ForEach ($GroupsWithOutEmail in $GroupsWithOutEmails){
    $Alias = $GroupsWithOutEmail.Name.Replace(" ","")
    $SimpleName = $Alias.Replace("_","")
    $Identity = $GroupsWithOutEmail.DistinguishedName
    $PrettyName = "StaffGroup - All " + $GroupsWithOutEmail.Name + " Staff"
    $PrettyeMailAddress = "SMTP:StaffGroup_" + $Alias + "@domain.co.uk"
    Write-Host $Alias $Identity $PrettyName $PrettyeMailAddress
    Enable-DistributionGroup -Identity $Identity -Alias $Alias
    Set-DistributionGroup -Identity $Identity -DisplayName $PrettyName -EmailAddressPolicyEnabled $false -EmailAddresses $PrettyeMailAddress -SimpleDisplayName $SimpleName
    There's some code in there to get around some of our groups which had "_" in them and Exchange didn't like. If you just want enalbe the groups as DG's then remove the "Set-DistributionGroup" line
    Is that any help?
    J

  • How to change mail-enabled security group to security group

    Hi,
    As a test I have configured on the properties page of a security group an email adres. By doing this converted a security group to a mail-enabled security group. Also this group has been transferd to Office 365. But after testing I want to make the distribution
    groups on the Exchange in Office 365. So I deleted the emaila dres of the security group, but it still synchronized to Office 365 as a mail-enabled security group. How can I change in AD the mail-enabled security group to a security group?
    Thanks in advance

    Hi StijnS,
    For the O365 question there are Office 365 technical forums available at
    http://community.office365.com/en-us/f/default.aspx.
    The related article:
    Office 365 Forum Assistant
    http://blogs.technet.com/b/neilhobson/archive/2011/09/20/office-365-forum-assistant.aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Work email field not filling in for mail enabled security groups in sharepoint

    I've recently been trying to setup alerts to send to mail enabled security groups on our sharepoint site.
    I've created universal mail enabled security groups for this purpose, and populated them with users, and then set those in the alert field, but no one is getting alerts.
    After a lot of investigation, I've found that this is likely because the security groups listed under sharepoint in the people and groups section don't have work email fields filled in. Theres a couple of groups that work which do have this field filled
    in, but everything created recently is missing this. I can't seem to set this field up to be editable instead of importing from AD either. I've confirmed the AD import is working fine, all user details and work email fields are filled out correctly, it is
    only the security groups that are having problems.
    Does anyone have any experience with this?

    As per your description I assume that individual user gets email alert, right ?
    If no then go to central administration > operation > timer job definitions > “web application” view > select your web application in the menu bar to check if Immediate alerts working fine
    If not, please run the following operations:
    stsadm -o setproperty -propertyname alerts-enabled -propertyvalue false -url http://...
     stsadm -o setproperty -propertyname alerts-enabled -propertyvalue true -url http://...
     stsadm -o setproperty -propertyname job-immediate-alerts -propertyvalue "every 5 minutes"  -url http://...
    And then try again.
     At last, if the issue is still there, please check your email server settings in terms of the following articles:
    http://www.sharepoint-tips.com/2007/10/email-alerts-not-getting-sent-while.html
    http://social.technet.microsoft.com/Forums/en-US/sharepointworkflow/thread/36c3b5b5-af03-4f8a-b202-b62db330c21c/
     And if individual user gets an alert then you can create cutomized alert for Sec group
     Please refer
     http://sptoolbox.codeplex.com/releases/view/8255
     hope this will help you
    Regards, Pratik Vyas | SharePoint Consultant | http://sharepointpratik.blogspot.com/

  • Can't add a mail enabled public folder to allowed senders on a mail universal security group in Exchange 2010

    Hello,
    I'm trying to allow a mail enabled public folder permissions to send to a mail universal security group. In the past if I wanted to add a PF as an allowed sender I would do it via the AuthOrig setting on that group using adsiedit.  I just noticed today
    that if I add the PFs DN to that attribute of the group, nothing happens.  No matter how long I wait the PF never shows up under the allowed senders list on the group. If you try and send as the PF you get a bounce about not being allowed to send to that
    group.  If I go back into AD and check, the PF is still listed under the AuthOrig attribute.  I tried this on a few different groups and with a few different PF and I'm stumped.  I think the last time I had to update this setting on a group
    was before I installed roll-up 5 for SP3. 
    If I do the same test with a user, it works as it should and they show up in the allowed senders list.  
    If I take a group that isn't restricted to specific senders and add a PF DN to the AuthOrig attribute of the group, the button in the message delivery restrictions for that group in the EMC will change from all senders to only senders in the following list,
    but the PF wont be listed in the box of allowed senders.  If I remove it from the AuthOrig attribute the group will change back to allow all senders.  It's really weird, so any help or light you can shed on this would be greatly appreciated. 
    -Mark

    Hello,
    I check many threads and articles, but there is no related information to verify the issue.
    If your purpose is that adding a mail-enabled public folder to allowed senders on a distribution group, there is a workaround method. You can create a new distribution group, and then add the public folder to the new distribution group, and add
    the new distribution group to the Only senders in the following list field of the target distribution group.
    Here is an article for your reference.
    http://support.microsoft.com/kb/2746885
    Cara Chen
    TechNet Community Support

  • Exchange 2010 Mail Enabled Distribution Group Won't Receive from External Address

    Let me pre-empt the usual first response: yes, I've unchecked "require that all senders are authenticated" on the Message delivery Restrictions properties of Message Delivery Restrictions. I cannot get a message from an external mail server to
    send to an internal mail-enable distribution group. It's working internally. I've checked our ironport and the message is being sent to exchange (at least I think it is).
    How can I troubleshoot this?!
    tfgeorge

    Ironport is definitely sending this email to exchange. Please read:
    06 Jun 2011 08:53:20 (GMT -05:00)
    Protocol SMTP interface Main Interface (IP Gateway IP) on incoming connection (ICID 17720578) from sender IP 65.54.190.154. Reverse DNS host bay0-omc3-s16.bay0.hotmail.com verified yes.
    06 Jun 2011 08:53:20 (GMT -05:00)
    (ICID 17720578) ACCEPT sender group UNKNOWNLIST match sbrs[-1.0:6.0] SBRS 3.0
    06 Jun 2011 08:53:20 (GMT -05:00)
    Start message 2136865 on incoming connection (ICID 17720578).
    06 Jun 2011 08:53:20 (GMT -05:00)
    Message 2136865 enqueued on incoming connection (ICID 17720578) from
    [email protected].
    06 Jun 2011 08:53:20 (GMT -05:00)
    Message 2136865 on incoming connection (ICID 17720578) added recipient ([email protected]).
    06 Jun 2011 08:53:20 (GMT -05:00)
    Message 2136865 contains message ID header '<[email protected]>'.
    06 Jun 2011 08:53:20 (GMT -05:00)
    Message 2136865 original subject on injection: TEST
    06 Jun 2011 08:53:20 (GMT -05:00)
    Message 2136865 (1471 bytes) from
    [email protected] ready.
    06 Jun 2011 08:53:20 (GMT -05:00)
    Message 2136865 matched per-recipient policy DEFAULT for inbound mail policies.
    06 Jun 2011 08:53:20 (GMT -05:00)
    Message 2136865 scanned by Anti-Spam engine: CASE. Interim verdict: Negative
    06 Jun 2011 08:53:20 (GMT -05:00)
    Message 2136865 scanned by Anti-Spam engine CASE. Interim verdict: definitely negative.
    06 Jun 2011 08:53:20 (GMT -05:00)
    Message 2136865 scanned by Anti-Spam engine: CASE. Final verdict: Negative
    06 Jun 2011 08:53:20 (GMT -05:00)
    Message 2136865 scanned by Anti-Virus engine Sophos. Interim verdict: CLEAN
    06 Jun 2011 08:53:20 (GMT -05:00)
    Message 2136865 scanned by Anti-Virus engine. Final verdict: Negative
    06 Jun 2011 08:53:20 (GMT -05:00)
    Message 2136865 queued for delivery.
    06 Jun 2011 08:53:20 (GMT -05:00)
    SMTP delivery connection (DCID 1658840) opened from IronPort interface 100.100.100.100 to IP address 100.100.100.100 on port 25.
    06 Jun 2011 08:53:20 (GMT -05:00)
    (DCID 1658840) Delivery started for message 2136865 to
    [email protected].
    06 Jun 2011 08:53:21 (GMT -05:00)
    (DCID 1658840) Delivery details: Message 2136865 sent to
    [email protected]
    06 Jun 2011 08:53:21 (GMT -05:00)
    Message 2136865 to
    [email protected] received remote SMTP response '2.6.0 <[email protected]> [InternalId=919833] Queued mail for delivery'.
    tfgeorge

  • Send Mail to Contact Group

    I'm helping someone set up their new iPad.  One of the most common tasks she hopes to use it for is sending e-mail to several groups.  On her iMac she has the groups set up in Contacts.  To send a message to them she opens mail, selects the group, and all the addresses populate the To: field.
    The groups are there in iOS on the iPad too, but there doesn't seem to be any way to select them when you're sending a mail message.  If you go to the + button, click Groups (little back arrow), and click the group it just adds or removes the little check mark by the group name.  There's no way to chose the group to say "send to all these people."
    You CAN select just the specific group, go to the contact list, and tap each name one at a time to populate the To: field, but with 50+ e-mail addresses...  That's NOT a solution, that's a pain.
    There must be some way in iOS to send mail messages to everyone in a contact group... BUT HOW?
    Thanks!

    Um, Apple... REALLY?  Why on earth would they leave out something this fundamental?
    Please tell me they added it in iOS 7.  This is one of the primary reasons my friend bought the iPad.  She's considering ditching it because it can't do something as fundamental as send to a group.
    Thanks!

Maybe you are looking for

  • How to select maximum date in report

    i have tried to select maximum date in my report by this way: select max(date) from a but the result came out same as "select date from a" there is no different whether i put a max or not. is anyone there can help me on this please.... Thank you....

  • Error while copying GL Accounts from One Client to another client

    Hi, We are trying to copy GL accounts created in one client to another client (Company Code is same in both the clients). First we executed FS15 (send) and a file was created on the server. With the help of BASIS team we checked that file and it cont

  • Power Mac G5 Dual 2.0 GHz Model #M9032LL/A - Is it usable?

    I have a lead on a used Power Mac G5 Dual Processor, Model #M9032LL/A. I'm trying to determine if these models were any good - any known issues, any recurring problems? I know that it's not liquid cooled - any problems with overheating? I believe thi

  • IPhone 4 wiped out after trying to upgrade to OS5

    I tried to upgrade my iPhone 4 to OS5, completed the back-up and then when the software was installing I received an error message and now my phone is wiped out. How do I access my back up? I don't want to restore my phone and loose everything  it if

  • Can't get sound despite all settings correct

    My iPad2 used to make a sound when I received an incoming email.  It no longer does that, despite all my sound settings showing it as working properly.  What am I doing wrong?  Does the sound go out on these iPads?