Send email to group in iPhoto '11-how to

Hi-I have a group set up in my Address Book to send new photos of my grandson to selected people. Before I upgraded, I just typed in the name of the group and that was that. With this update though, it doesn't auto fill the people in the group. Am I missing something or is this a bug? I know there are other ways I can send the announcement but I do like the new format for sending within iPhoto. Thanks for any help! Judy

If you don't like the new ways that iPhoto handles emailing then you can access the old way with a small change in how you work:
1. Drag the pics from the iPhoto Window to the Mail icon in the Dock.
or
2. Use the Photo browser in Mail - or any Media browser in the entire OS
Uploaded with plasq's Skitch!
You can then resize the image in the iPhoto Window
Uploaded with plasq's Skitch!
Finally, you can make a simple OS Service to to automate the procedure. For more on this have a read of this:
http://discussions.apple.com/thread.jspa?threadID=2627690&tstart=0
Regards
TD

Similar Messages

  • Sending email to groups from iPad/iPhone

    How do you send email to groups from an iPad or iPhone ?

    Do all the contacts in the group have a valid email address? What does the server complain about exactly (without revealing the actual email addresses)?

  • Just upgraded to Lion an am discovering that I cannot send email photos from within iPhoto. Error message says bad Internet connection or server not working, when that's not the case. Never happened in Snow Leopard! Help!!!

    Just upgraded to Lion an am discovering that I cannot send email photos from within iPhoto. Error message says bad Internet connection or server not working, when that's not the case. Never happened in Snow Leopard! Help!!!

    what email service - Yahoo mail have been acting up lately
    you can try setting Mail as your email client - it resolves this pfoblem for some people
    LN

  • No longer sending emails to Groups

    Help, All of a sudden I can no longer send emails to groups. It says the server is not accepting the email.

    Well the participants belong to a particular group in the AD and that group is assigned to a role . So if you are trying to access participants in that role, it should automatically try to access participants inside the group in the AD to which the ROLE is assigned to?
    If there are participants inside a group in the AD which is synced to ALBPM, should ALBPM auto-detect those participants inside that group and if that group is assigned to a ROLE, should ALBPM auto-detect those participants inside that GROUP and send them emails?
    Am I right?
    Also what is id : departmentName over here?
    Do we need to exactly specify the group name in the AD?
    My question is :-
    Why do we need to hard-code an AD group name into our code because if we say :-
    activity.role.find(name : activity.role.name);
    it should find the role for that activity and all participants belonging to that role should be emailed.
    Now if these participants are under a group which is assigned to the ROLE, then all participants under that role need to be emailed..
    Doesn't ALBPM automatically detect this?
    Edited by: user8752903 on Sep 21, 2010 8:49 AM
    Edited by: user8752903 on Sep 21, 2010 8:57 AM
    Edited by: user8752903 on Sep 21, 2010 9:11 AM

  • When I send emails with photos from iPhoto recipients often tell me images are upside down.  What would cause that?

    When I send emails with photos from iPhoto recipients often tell me images are upside down.  What would cause that?

    Found this :
    https://discussions.apple.com/thread/3431867?start=0&tstart=0
    by doing this :
    http://www.google.com/search?q=images+are+upside+down+ios

  • 'Send email to group' is not working

    I have just made a group in address book. As far as I can tell, I have made it in exactly the same way as all my other groups. However, when I right click on the group name, and choose 'send email to group', it opens a window with nothing in the To: field. I've tried restarting the app, restarting the computer, and even creating the group again, but still it doesn't work.
    All other groups made before this still work fine: when I choose 'send email to group' the To: field is filled with recipients's addresses.
    This is a real problem for me as I use this feature all the time. I'd appreciate any help.

    Seems to be working now. I don't know what was wrong before.

  • On my iPad I can only send email and messages to apple products.how can I send and receive from other devices other than Apple?

    On my iPad I can only send email and messages to apple products.how can I send and receive from other devices other than Apple?

    Vallakat wrote:
    On my iPad I can only send email and messages to apple products.
    There is a huge difference between sending email and sending messages.
    Yes, I believe you when you say you can only send messages to other Apple products.  The iPad is not a telephone, and therefore, it cannot text message.  It can only iMessage, which means it can send and receive messages to/from other Apple products if they are on WiFi or an iMessage capable cellular network.
    Email, however, is a whole different category.  I don't really think you can only exchange email with other Apple products only.  Make sure you have correctly identified the symptoms.

  • Send emails to groups using iPhone

    There are few third-party apps that lets you send emails to groups. One such app is called Mail2Group. It lets you create groups and individual email address of your contacts (ex: if there is work and home address, you can pick which one). You can also add address outside of your contacts. Can be very handy when you are sending email frequently and to groups of people. Search for "mail2Group" on app store..

    Just found the answer on previous posting - go to composing and untick show group members addresses. In case this helps anyone else who is struggling with this.

  • Send email to group

    I have created a group ... How can I send an  email to whole group without going through them individually ?

    Thanks Mr Peck !   I have just bought an app which does the trick ... Pity I have had to buy an app for something so basic ....
    My group was created manually on my iPad - after unsuccessfully trying to sync groups with gmail for the last 2 months...
    Groups seem to be a problem ... You cannot drag contacts into a group on the iPad... Well, I couldn't anyway. 
    But Mail shot Pro is easy to use.
    thanks.

  • Sending emails to groups

    Hi all,
    I have to send emails to participants inside a group on the server. The groups are synced with the AD on the server.. Now do I need to include a code to call all groups under the ROLE for which I am sending emails to or the following code is fine even though the participants are not directly assigned but are inside the groups which are extracted from the AD?
    Role role;
    Mail mail = Mail();
    role = activity.role.find(name : activity.role.name);
    String email = null;
    String subject = "Test Email";
    String message = "test";
    for(int i=0; i < role.participants.length(); i++)
    email = role.participants.email;
    logMessage("---" +email);
    if(email != null)
    mail.contentType = "text/html";
    mail.subject = subject;
    mail.from = ADMIN_EMAIL;
    mail.recipient = email;
    mail.message = message;
    mail.send();
    else
    logMessage("Problem!! email value for this user [" + role.participants[i].name + "] is null. Please contact the administrator.");

    Well the participants belong to a particular group in the AD and that group is assigned to a role . So if you are trying to access participants in that role, it should automatically try to access participants inside the group in the AD to which the ROLE is assigned to?
    If there are participants inside a group in the AD which is synced to ALBPM, should ALBPM auto-detect those participants inside that group and if that group is assigned to a ROLE, should ALBPM auto-detect those participants inside that GROUP and send them emails?
    Am I right?
    Also what is id : departmentName over here?
    Do we need to exactly specify the group name in the AD?
    My question is :-
    Why do we need to hard-code an AD group name into our code because if we say :-
    activity.role.find(name : activity.role.name);
    it should find the role for that activity and all participants belonging to that role should be emailed.
    Now if these participants are under a group which is assigned to the ROLE, then all participants under that role need to be emailed..
    Doesn't ALBPM automatically detect this?
    Edited by: user8752903 on Sep 21, 2010 8:49 AM
    Edited by: user8752903 on Sep 21, 2010 8:57 AM
    Edited by: user8752903 on Sep 21, 2010 9:11 AM

  • Group addresses not added when sending email - only group name

    Just helping a friend use Thunderbird on a new PC with Win 7 Prof. Previously he used Outlook Express under Win XP.
    Downloaded latest version of Thunderbird. Imported old wab file as suggested using "morefunctionsfor..." . The old (complete) address book was imported correctly into a new address book in Thunderbird. It contained several groups. Each of these is correctly listed underneath the new address book and they also appear in the new address book. Clicking on any group correctly shows the list of addresses for that group.
    However, if one selects a group and sends an email to that group ONLY the name of the group appears in the TO field and the email fails to send. Closer inspection of the contents of the address field show that only the group name and NOT the constituent addresses are being included.
    Thanks

    My problem is that groups are no longer recognised and cannot be used to send emails. Does Mozilla respond to this problem or do we have to wait for a clever user to find the solution? The problem for me is fundamental and will shortly affect whether I have to find an alternative program.

  • Sharepoint Designer 2013 cannot send email to group

    Have a nice day, all!
    I have got a trouble with Sharepoint designer 2013 - I can not send email from workflow to Sharepoint group users. It's the same trouble that describe
    here Please, look at the pictures there.
    http://sharepoint.stackexchange.com/questions/67688/sharpoint-designer-2013-stopping-when-workflow-people-group-selection
    Thank you!

    Hi
    when you create the workflow select 2010 workflow
    Kind Regards,
    John Naguib
    Technical Consultant/Architect
    MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation
    Please remember to mark your question as answered if this solves your problem

  • ICalender is not sending emails to invitees on Yosemite. How do i fix this?

    Hey guys,
    As you might have guessed my icalender refuses to send email invites out after creating an event... How do i solve this problem ?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then try to send an invitation. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.

  • When I first began using the Razr I could send email to groups that I had set up in my Google account.  I can no longer get this function to work.

    I can do this function on the PC using my Google Gmail account which accesses my personal email account. << Personal information removed to comply with Verizon Wireless Terms of Service >> I had been able at first to forward email go groups on my Droid Razr when away from my PC.
    Message was edited by: Verizon Moderator

    Have you by chance Cleared the Cache it might not hurt to Clear it and see if that Helps..

  • How do you send email to groups with Apple Mail

    How do you select a group from Address book to use in email address?

    Either select the group from the AddressBook within Mail and choose recipient field (TO, CC, or BCC) or just type the group name in the recipient field.
    The group name should show in the field or right click on the group name to expand the addresses.

Maybe you are looking for