Add another email address to "email" icon?!

My wife and I use iphoto; however, the email icon at the bottom automatically uses my email address. She would like to add her email address so that she can send pics from her account.
Is this possible?
Any suggestions would be greatly appreciated!

Peter:
Welcome to the Apple Discussions. You would do that in Mail. Open Mail's Preferences and under accounts click on the "+" button in the bottom left hand corner. Then add your wife's information and complete adding her account.
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

Similar Messages

  • I have a problem with mail autofilling info email addresses. Emails sent to me the from looks like this: Holiday in the United States email address . I have no idea what this Holiday in the United States is...How can I fix/change to my name?

    I have an irritating problem with mail autofilling info in email addresses. Emails sent to me the from looks like this: Holiday in the United States <my email address>. I have no idea what this Holiday in the United States is or how it got to be there...How can I fix/change to my name?
    I fixed the To: autofilling incorrectly by deleting my email address from the Previous Recipients List, but is there a way to stop that from coming up on emails that I receive?

    Have you checked your Mac address book? If your email is saved somewhere in your address book with the name "Holidays in the United States" it might be adding the name automatically in Mac Mail.
    Alternatively, try this:
    Delete an Email Address from Auto-Complete in Mac OS X Mail
    To remove an email address from the auto-complete list in Mac OS X Mail:
    Start typing the recipient's address or name in a new message.
    Select the desired address from the auto-complete list as if you'd compose an email to them.
    Click the small down arrow in the recipient.
    Select Remove from Previous Recipients List from the menu.
    You can also search for the unwanted address directly in the previous recipients list:
    Select Window | Previous Recipients from the menu in Mac OS X Mail.
    Highlight the address you want to remove.You can highlight multiple addresses by holding down the Command key.
    Click Remove from List.
    Source: About.com

  • Is this legit?             Confirm your email address  Dear Email Users,  As part of our security measures, we regularly screen activity in the E-mail system and after noticing an issue on your account password, we are requesting confirmation from you for

      Is this legit?
       Apple Support Team <applsupporteam @icloud.com>
           Confirm your email address
    Dear Email Users,
    As part of our security measures, we regularly screen activity in the E-mail system
    and after noticing an issue on your account password, we are requesting confirmation
    from you for the following reason:
    Our system requires further password verification.
    In accordance with E-mailUser Agreement, your account access will remain limited
    until the issue has been resolved. Unfortunately, if access to your account remains
    limited for an extended period of time, it may result in further limitations or
    eventual account closure.
    To verify your E-mail account, you must reply to this email
    immediately and enter your following
    information.
    First Name:
    Last Name:
    Email Username :
    Email Password :
    Thank you for using webmail
    Icloud. com support team
    <Edited By Host>

    Apple requests that you forward these types of emails to them as follows (from http://support.apple.com/kb/HT4933):
    If you receive a suspicious email, select the message text so that it is highlighted. Choose Forward as Attachmentfrom the Message menu (OS X Mail) or the Actions menu (Outlook). Send the email to [email protected] This provides Apple's legal department and law enforcement with useful information to help prevent future phishing emails.

  • Extract email addresses from email header - Sender (From) - Mail

    Hi!
    I would like to extract email addresses from email header from field "Sender (From)" and from email body in Mail at the same time.
    I saw only scripts how to extract from email body.
    I get emails asking for some informations about product and many people don't include their email address in the body, so I have to extract from email header as well.
    I would like to extract email addresses from whole email account, separate alphabeticaly, delete duplicates and save it (separated by comma) in text file.
    This I would use for sending massive email to all customers. 
    I'm on OSX 10.6.8.
    Do you have please somebody script for extracting email addresses in the way:
    1. select mail account
    2. run script
    3. save email addresses to txt file
    Thank you for help and advise!

    Hi Neville!
    Last time I was writing basic programs in Turbopascal in 1996.
    Maybe I'm doing something wrong...
    1. I switched off in Mail "Use Smart Addresses".
    2. I changed the path to my account in both commands:
    Command A.
    i=~/Library/Mail/[email protected]@pop.gmail.com # Input file path
    o=~/Desktop/ # Output file path
    n=`date "+%y%m%d%H%M%S"`-"addresses" # time stamped file name
    grep -rh From: $i | grep -o '[-a-zA-Z0-9.]*@.[^>]*' | awk '!seen[$0]++' > $o$n
    Command B.
    grep -rh From: ~/Library/Mail/[email protected]@pop.gmail.com | grep -o '[-a-zA-Z0-9.]*@.[^>]*' | awk '!seen[$0]++' > ~/Desktop/`date \"+%y%m%d%H%M%S\"`"
    3. I write commands in TERMINAL.
    result of Command A:
    List of couple emails same like before switching of "Use Smart Addresses"
    I answered it already above:
    It can extract to .txt file only email addresses from email header which includes after the name as well email address.
    Example:
    From: Neville Hillyer <[email protected]>
    If there is in header only the name without the email address then it's not extracted (email is visible after secondary click on the name)
    Example:
    From: Neville Hillyer
    I just checked that most of emails I have has in the emailheader only the name without the email address so I miss most of email addresses.
    Result of Command B:
    >
    And nothing going on...
    4. I tried the same in AppleScript editor
    Result of Command A:
    Syntax error. A unknown token can’t go after this identifier.
    I changed the path but I still get syntax errors
    (instead of i=~/Library... i put i= Users/muzaa/Library...)
    Result of Command B:
    Syntax error: A “from” can’t go after this identifier.
    grep -rh From: /Users/radimmuzikant/Library/Mail/[email protected]@pop.gmail.com | grep -o '[-a-zA-Z0-9.]*@.[^>]*' | awk '!seen[$0]++' > ~/Desktop/`date \"+%y%m%d%H%M%S\"`"

  • Allow the user to add multiple email addresses in Email ID Field

    In my jsp page, the funtionality i need to enhance is to allow the user to enter multiple email addresses in the "To" field of my Email A friend Task...right now it allows only one email id to be input by the user
    Can anyone suggest me how to achieve it using javascript /jstl
    Thanks in Advance

    one more alternative is u can use : StringTokenizer class.
    Code as follows: I hope this also helps u. But it will be used at server side. not at client side(for client side validations , we are using javascript).
    java.util.StringTokenizer stringTokenizer=new java.util.StringTokenizer(request.getParameter("to"),",");
              String[] list=new String[stringTokenizer.countTokens()+1];
              int i=0;
              while(stringTokenizer.hasMoreTokens()){
                   list=stringTokenizer.nextToken();
                   i++;
    Regards

  • Email script adds a ghost address in email client

    I am using the following script to send an attached PDF back to my client when their customers complete and submit the form. Everything works well, except that it lists the email address twice in the "to" field (the second is not a complete address so it fails).
    the result is that one email goes through as expected, but the customer also receives an "undeliverable" notice in their inbox.
    has anyone seen this before? or can you see the problem with the script?
    Here is the script:
    var iVar = 0;
    var oDoc = event.target;
    if (iVar = 0)
    oDoc.mailDoc({
    bUI: true,
    cTo: "[email protected]"
    cSubject: "Questionnaire",
    cMsg: "Seller Questionnaire",
    thank you for your help.
    Brian

    I have not seen that before can you post the form to [email protected] and I will have a look.

  • FaceTime add email address verification email didn't receive even after weeks

    i added alternate Apple id email address and it doesn't send the verification email anywhere. Please advise.

    Hi Himahere,
    Take a look at the article linked below, it provides suggestions that’ll resolve most issues receiving Apple ID verification emails like the one you encountered after setting up FaceTime on your iPad.
    If you didn't receive your Apple ID verification or reset email - Apple Support
    Cheers,
    -Jason

  • Use a dynamic list of email addresses to email a report via Business Objects Server 11

    Post Author: wolfgang666
    CA Forum: General
    I use Business Objects Server version 11 to distribute reports via email but was asked if there was a way to only send the reports to those people listed in the report (which changes daily) instead of the entire distribution list. I can create a list of email addresses as a variable within the report but can't find any way to pass it to the Business Objects server "To:" field located in the destination screen. I would expect to see some option for sending to some value located in the report but alas no such option is evident. This seems like a feature the product should be capable of doing as it is so basic. Any other way to do this that anybody can think of? Any help is greatly appreciated. Thanks.
    Matt Frazier

    Hi Alan,
    The simplest thing would be to simply use the Import Wizard to create a BIAR file and then back up the required CR's and instances to the BIAR file. So for instance you would use the "Import Folders and Objects" option. So the source system would be the system you are decomissioning and the Destination would be the BIAR file. Once that is done you can use the BIAR file to import the report content into another system in the future.
    <<Text removed>>
    Kind regards,
    John
    Edited by: Matt on Oct 10, 2011 10:20 AM

  • New Envy All in One won't let me use my email address to email scans

    Hi, I have just purchased 2 HP Envy 7640 e All in One Series machines.
    Setting up the Scan to email option I have to insert my own email address for it to send me a pin number (and to put on emails it sends out - I think ??) my email is:   [email protected]   I get a message saying "enter a valid email address" I have had this on only a very few sites in the past and believe it is because the domain is numbers only.
    has anyone any suggestions?
    thanks in advance

    Hello Brian567,
    Welcome to the HP Support Forums!
    I understand you are looking to setup Scan to Email on the ENVY 7640, but the Email you are trying to use is not being accepted.
    More than likely the issue is being caused by the Email domain you are trying to enter. Do you have another email with a more common domain to try? For example, Gmail, MSN, etc.
    Cheers,
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Is there a possibility to change the email address of  email alarms automatically in Calendar?

    Hi,
    In the Calendar app, I have a lot of events related to bussiness and I set an email alarm in each of them. But now I want to change the email address of the alarm in order to send the events to someone else. The problem is that because the number of the events is really big, I was wondering whether there was a way to change the address in all the events automatically. Is there such a possibility? Thank you in advance.

    My opinion: I think you'll need to define what, to you, means "primary user".  a primary user relationship can be defined manually by you one by one in the console, automatically by usage, imported via script, or the end user (if they know
    how and you've allowed this in settings) can indicate a machine is a primary machine for themselves.
    How is primary user relationship set, in your environment?  Depending upon how that relationship is determined in your environment, then you can track for that particular machine how or why the relationship you expect to be there, isn't the relationship
    the database acknowledges.
    Standardize. Simplify. Automate.

  • How to pass more than one email address in email template

    Hi all.
    I need to pass email address list in TO field of email template.I passed the list with comma delimeter but even though mail is trigerring only to the first email address in the list...
    If any one come across this please mail me...
    It is bit urgent....
    Thanks in advance....

    Hi Thanks for your reply.
    No there is no space between two mail ids and also i tried by hardcoding the email id's in TO field even though mail is not triggering....
    Through rules i am pasisng the notifer list.Just i am calling the rules in variable and passing that variable in TO field....
    Is there any other way to solve this problem...

  • Customise EOP Spam Notification End-User email address and email content

    Hi
    We are using EOP with our on-premise Exchange 2010 environment. 
    I am rolling out EOP and have the following two (simple) questions, regarding the Spam Notification email that is sent to end-users:
    1. Can we edit the email address that sends the Quarantine notification email? Or must the email come from [email protected]
    2. Can we customise the Quarantine email that is sent to the End-user (with our company logo)?
    From my experience and understanding, I believe the answer for both is NO, but my customer is adamant that editing the email address and customising the email content is possible.. Please advise.
    Thanks
    Ron

    The safelist/blocklist is tied to one email address. However, if you enable email alias consolidation done by LDAP and leveraging off of the Active Directory, then you may be able to achieve what you want.
    The safelist/blocklist comes into play with respect to anti-spam results. The email alias consolidation should occur much earlier.
    So, see if you can get email alias consolidation using LDAP/Active Directory working and it should address the safelist/blocklist thing.

  • 2 ID's (Email Addresses), 1 Email now Non-Existant.....Help

    So a few years ago, we had one email address that was my user ID and that apps were downloaded to.  Then I got a new phone, cancelled that email provider (not thinking about my phone and itunes) and signed up with Gmail, therefore giving myself a new email address, new phone now, and therefore a new Apple ID.  I started using my phone, syncing it with the new Itunes under my new ID (forgetting about the old one) and all was good.  Then my husband used his laptop that had the old ID (Old Email address info) still within his itunes and sync'd my new phone, thinking this would put my old app purchases on here from my old ID with the new app purchases from my new ID.  My phone has been screwed up ever since.
    Now when I got to my phone's App Store to update Apps, one ID will pop up and I download those apps updates, no problem.  That would be my current and newest ID (the working Gmail acct).  Then it comes time for my old apps (which by the way did merge and make it onto my phone somehow) to update so then my old Apple ID pops up asking for a password.  I have no clue what that is.  I try to retrieve it with birthdate and that doesn't work with anyone in the family.  I try by answering security questions and no go either.  I can't do anything with email because that acct is dead. 
    I guess my question becomes, how can I cancel or have cancelled the old acct all together and have all those apps from the old acct moved to my new acct so I can not be bothered with this crap any longer?  I mean really?  Apple makes things pretty difficult when you screw up; and sometimes even when you don't.
    If anyone could help, that would be extremely appreciated.
    THx
    Shanaly.

    i have the same issue with having 2 email addresses and only one being valid. the current apple id somehow is linked to my old music too. not sure how when i have not used that original email in over 5 years. i can no long access it either. you should try going to appleid website directly, not from your phone to reset the email if it will let you. i have tried, but it will not link to my current still valid email from my old email. i keep getting messages that my computer needs to authorize the song i'm trying to play the music on...good luck!

  • Add another 'from' address?

    Hello! I am looking to set up mail with a second from address that goes out through a second SMTP server. I'd like to simply select my second email address, and have Mail.app send it out through the alternate SMTP server.
    I know I can do this, because I used to have it set up this way, but I brought my MacBook Air in for service and reinstalled Mountain Lion, and now I can't get it to work unless I select the email address AND SMTP server each time I send a message. And I can't remember how I got it to work previously.
    Any hints appreciated!

    Morning Cody DH,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    Configuring Mail for your email account
    http://support.apple.com/kb/ht1277
    For troubleshooting on this, take a look at this article:
    Mac OS X: Mail - How to change the default account and "From" address
    http://support.apple.com/kb/TA20473
    Hope this helps,
    Mario

  • Delete a incorrect email address from Email history

    I accidentally entered an incorrect address email into my 3G S. I sent an email to that address and now it shows in my history.
    When i go to send an email to anyone who's name begins with "S" the incorrect address is there at the top of the list. Every other address has the "type" of address, i.e home, work next to it but the incorrect address does not, it just has the email address.
    How do i delete either the incorrect address off my phone, please note that it is not anywhere else on my phone, it is not in her "contact info" or how do i clear the "sent email" history?
    I have restored the "factory settings" and also done the "press the home key and off button until the phone switches off" trick. Nothing has worked
    Please someone help me as it is driving me CRAZY!

    The Mail app on the iPhone/iPod Touch does have an option to clear previous recipients. The only way to remove these cached email addresses from the Mail application is restoring the iPhone/iPod Touch as a new phone/iPod. If you restore from backup, the cache is also restored.
    http://support.apple.com/kb/HT1414

Maybe you are looking for

  • Airport Express + TV + Bowers & Wilkens MM-1 Speakers Setup

    I am interested in purchasing the Airport Express and need some help before I purchase to make sure its the right solution.... I currently have the MacMini, 40" LCD HDTV, Bowers & Wilkens MM-1 speakers and want to add an express to use airplay with m

  • Transporting Appraisal Template

    Hi I have created the New Appraisal Template for 2015 review in Dev. Now i need to transport the Apparisal template into QA system. Do i need to create the transport for Category as well or directly i can create the transport for Apparisal template?

  • Track ball 8900

    my scroll button does not work and i had to restore my phone to factory setting and now cannot press ok to accept the software settings to in order to access my homescreen! any suggestions on how to get around this? please much appreciated

  • Att high speed and time capsule?

    Just upgraded to att high speed internet, can I also use time capsule?  Wasn't aware that att internet was a modem and router together but bought time capsule for the backup capabilities.

  • ITunes using 90% of processor...is that normal?!

    this is outrageous! I have been noticing that applications have been running slowly when I'm playing music in iTunes, so I opened Activity Monitor to see who the processor hog was. indeed, it was iTunes, using 90% of my processor to play a flipping s