Exporting to email different email client?

Is there anyway to select which application Final Cut Pro X exports the email to?  By default is appears to be Mac Mail but we would like to switch it to Outlook.

Mark:
First repair disk permissions. Then, if needed,delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your User/Library/Preferences folder. See if either of those will help.
Next, create a test library, import a few photos and try emailing. If it emails OK then the primary library is the culprit. In that casedownload and run BatChmod on the iPhoto Library folder with the settings shown here, putting your administrator login name, long or short, in the owner and group sections. You can either type in the path to the folder or just drag the folder into that field. Try again.
Lastly, if you boot into Safe Mode and still cannot email you may have to reinstall iPhoto.
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto 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 written an Automator workflow application (requires Tiger), 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 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

Similar Messages

  • Using share button in Finder with a different email client?

    Using the share button normally is a nice and easy way to share content.
    I've started using a different mail client for various reasons and the share button continues to work with all applications...
    ...Except Finder!
    Does anyone know of this and/or a way to fix it?
    I don't particularly want to change my default client back to Mail as everytime I use share button it will open it, but maybe if there's a way for just Finder to use Mail?
    Thanks!

    Just found the answer here
    https://discussions.apple.com/message/19041877#19041877
    So if you are using Outlook no luck. if you are using mail app it has to set to be default.
    What I did is created Automator Send Email...so right click and gone...easy
    You can see it here
    http://www.youtube.com/watch?v=wNo2o0K1X1Y

  • SENDING EMAIL USING ORACLE9i CLIENT/SERVER

    I HAVE DOWNLOADED 2 UTILITY LIBRARIES D2KCOMN and D2KWUTIL TO MY COMPUTER. THESE 2 LIBRARIES ARE COPIED TO AN ORACLE FORM. ON THE FORM, THERS IS A BUTTON. IN THE WHEN-BUTTON-PRESSED-TRIGGER, I HAVE CODED
    WIN_API_SHELL.WINEXEC('"C:\PROGRAM FILES\MICROSOFT OFFICE\OFFICE\OUTLOOK.EXE"-c IPM.Note/m"'||:email.recipient_name||'&cc='||
    :email.recipient_name2||'&subject='||:email.subject||
    '&body='||:email.mes||'"',WIN_API.SW_SHOWNORMAL,TRUE);
    :email.recipient_name,
    :email.recipient_nam2,
    :email.subject, and
    :email.mess
    ARE FIELDS ON THE ORACLE FORM.
    THE NAMES ARE DEFINED BY THE PROGRAMMER.
    THE NAMES OF THE FIELDS ARE NOT RESERVED WORDS.
    WHEN THE CODE IS EXECUTED, MICROSOFT OUTLOOK IS OPENED AND THE RECIPIENT LINE, COURTESY COPY LINE, SUBJECT LINE
    AND BODY OF A NEW MESSAGE ARE PREPOPUTATED WITH THESE FIELDS FROM AN ORACLE FORM.
    THIS ROUTINE WORKS FINE ON AN ORACLE6i CLIENT SERVER BUT IT WILL NOT WORK WELL ON AN ORACLE9i CLIENT SERVER.
    WHAT DO I NEED TO DO TO CHANGE MY CODE? DO I NEED TO USE NEW UTILITY LIBRARIES? I WOULD SURE LIKE TO KNOW WHAT TO DO.

    Oracle9i Forms does not support client server - so you are running in a different environment (even though you may still only be onl two tiers).
    Regards
    Grant Ronald
    Forms Product Management

  • How do I send from different email address

    I would like to use a clients email address when I send out thier survey form.  It is more recognizable and less likely to get caught is spam filter compared to using my email address.

    Thanks for your response.  I am using the distribution function within FormsCentral.  I guess what you are saying is that if I send my email invite (with link to the FormsCentral form) and  my email client supports using a different "from" address then I am good to go.    The alternative I was thinking about was changing my user credential/email address  for this one project so this different email address was used…. But this comes with some consequences I am not sure I want to manage.
    Doug

  • How to send the email to different email addresses from Workflow

    Hello,
    i an not getting that how to send the email from Workflow in SAP.
    plz give the steps to do that.
    i have done lots of time but system is not sending the email to different email address.

    Hi,
    lot of configuration is invloved in sending
    mail to external email id. check BASIS to
    configure for external mails ans also check
    debug FM and see which conditions exceptions
    (Document not sendis raised)
    also check below code
    CLEAR: DOC_CHNG, OBJTXT, OBJBIN, OBJPACK, OBJHEAD, RECLIST,
    RECIPIENT_INT, DOC_SIZE,TAB_LINES.
    REFRESH: OBJTXT, OBJBIN, OBJPACK, OBJHEAD, RECLIST.
    OBJBIN[] = CONTENT_OUT[].
    Populate e-mail title
    DOC_CHNG-OBJ_NAME = 'MAIL'.
    CONCATENATE 'EETS for Contract #'(245)
    OIA01_TAB-EXGNUM
    INTO DOC_CHNG-OBJ_DESCR SEPARATED BY SPACE.
    DESCRIBE TABLE OBJTXT LINES TAB_LINES.
    READ TABLE OBJTXT INDEX TAB_LINES.
    DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    It is a text document
    CLEAR OBJPACK-TRANSF_BIN.
    The document needs no header (head_num = 0)
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    but it has a body
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    of type RAW
    OBJPACK-DOC_TYPE = 'RAW'.
    APPEND OBJPACK.
    Create the attachment (the list itself)
    DESCRIBE TABLE OBJBIN LINES TAB_LINES.
    It is binary document
    OBJPACK-TRANSF_BIN = 'X'.
    we need no header
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    but a body
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    of type PDF
    OBJPACK-DOC_TYPE = 'PDF'.
    OBJPACK-OBJ_NAME = 'Attachment'(239).
    CONCATENATE 'EETS_' OIA01_TAB-EXGNUM '_'
    IT_ZMMTACCUID-ACCTUSRID
    '_' SY-DATUM '_' SY-UZEIT '.PDF'
    INTO OBJPACK-OBJ_DESCR.
    READ TABLE OBJBIN INDEX TAB_LINES.
    DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJBIN ).
    OBJPACK-DOC_SIZE = DOC_SIZE.
    APPEND OBJPACK.
    Get e-mail address
    CLEAR IT_ADDRESS.
    READ TABLE IT_ADDRESS WITH KEY ACCTID = IT_ZMMTACCUID-ACCTUSRID
    BINARY SEARCH.
    IF SY-SUBRC = 0.
    RECIPIENT_INT-ADDRESS = IT_ADDRESS-SMTP_ADR.
    ENDIF.
    *Send email to external mail address
    RECLIST-RECEIVER = RECIPIENT_INT.
    RECLIST-REC_TYPE = 'U'.
    APPEND RECLIST.
    CLEAR RECLIST.
    *Send email to SAP Office mail address
    RECLIST-RECEIVER = IT_ZMMTACCUID-ACCTUSRID.
    RECLIST-REC_TYPE = 'B'.
    APPEND RECLIST.
    CLEAR RECLIST.
    SEND THE DOCUMENT BY CALLING THE SAPOFFICE API1 MODULE
    FOR SENDING DOCUMENTS WITH ATTACHMENTS
    call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    exporting
    document_data = doc_chng
    put_in_outbox = 'X'
    importing
    sent_to_all = sent_to_all
    tables
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    receivers = reclist
    exceptions
    too_many_receivers = 1
    document_not_sent = 2
    operation_no_authorization = 4
    others = 99.
    also check
    https:/Re: mail sending problem
    Regards
    amole

  • I want to email photos on a different email system, gmail. How can I get the email icon of iphoto to put my photo on a gmail email?

    I want to email photos on a different email system, gmail. How can I get the email icon of iphoto to put my photo on a gmail email?

    If you have Mail setup a a client for your Gmail account set iPhoto to use Mail.  Then select one of Mail's stationary templates for photos and use it. May not be as good as the iPhoto templates but will be fancier than a plain email window.
    Click to view full size
    OT

  • How do i send an html file exported from muse as email blast with images and live links?

    My question it:
    How do i send an html file exported from muse as email blast with images and live links?
    I have designed a "website" in adobe muse and exported it as an html file. I am not sure how to send my .html file in an email!
    Best,
    Nicole

    Unfortunately, the answer is, you don't. The requirements for HTML displayed in an e-mail reader are very different than those for HTML displayed in a browser. The output of Muse won't work as an HTML e-mail. You could upload the Muse site as a website and provide a link to it in an e-mail, but the HTML generated by Muse is not suitable for direct display by an e-mail program.

  • Different email popping up

    I have a user who is having issues trying to email. She would put in an email address (i.e. [email protected]), hit return, and all of a sudden it would show up as a totally different email that would be in her Address Book (i.e. XYZ Business). Any ideas why and how to solve? I hope I explained enough, i've never seen or heard of anything like this before.

    Hi Peggy. Thanks for taking the time to reply.
    I might repeat my self: The problem is not selecting the default email client. You can do that in Mail, Sparrow, Postbox and Outlook too.
    Setting anything else than Mail as default mail client is not the issue. Done! Easy!
    What's the issue is to get iWork applications to accept it! After ML update my iWork apps only want to Share if Mail is standard mail client. Not if any other mail client is selected as standard.
    Hope it clarifies
    And once again, thanks for helping out.

  • Using a different email address

    Hi,
    I think I am having brain failure here.
    I have owned a domain name for about 8 years which I use as my primary email address e.g. [email protected]  I purposely have done this in case I hopped around different ISP's, which I have done a couple of times and more recently over to BT.  I have amended the settings on my email client as I would normally when changing supplier and I can now send email via my BT account with my alias.  However I am not receiving email to my client with this masked address.  I have checked with Easily my domain name company and the catch all address for my domain is set up to forward to my BT address.  So I am a bit stuck at the moment, I should know the answer but it escapes me.
    As a foot note my previous supplier was Pipex (TalkTalk) and whilst my account is now off I was receiving emails to my domain address from their servers.  I've removed their address from my forwarding at Easily but seems strange I can still access this account?
    Hope this all makes sense and someone can provide enlightenment.

    Badunit,
    Thanks no I don't have both accounts set up as the Business domain name is received and issued through the btinternet mail account. I've tried to set up a second account however this will not validate because they are both through the same mail account. Or am I missing something?

  • Several SAP Connect nodes for different email schedules

    // Internal code: 20081013-TWAN //
    Is it possible to define several SAP Connect nodes for email? My client has several application (in BW) that require the sending of email but on a different schedule per application.
    For example:
    - Application 1 requires email once per week AFTER manual checks of the email queue.
    - Application 2 requires automatic email sending every 15 minutes.
    I would like to know if it is possible and how it can be done.

    Hi,
    If you speak about SMTP node from transaction SCOT, it is not possible to define several SMTP nodes in one SAP system.
    You'll have to find a way with 2 different jobs.
    Maybe you will need to write a specific abap program based on RSCONN01 which would only push the specific mails from one application ?
    Regards,
    Olivier

  • Same Apple ID but different emails

    First off, some info about my situation...I have a 4S, iPad 2 and MBP. I am the only one in my household that has iOS5 and can therefore use iCloud. When I was going through signup for iCloud, it asked for an existing Apple ID, so I used my iTunes account one (a Gmail address) and it then created a me.com email. So far, so good.
    Like many, I then thought it'd much easier if I could just use the new me.com address for everything Apple related from now on, so I tried to change the email address associated with my Apple ID to the me.com address...but no joy, as I kept getting the you can't use a MobileMe account etc. message (even though I've never had one!). I then noticed that somehow (I guess when I used my existing Apple ID to join iCloud) my me.com address was already listed as an alternate email for my Apple ID.
    I can log in to all things Apple related using either email address (although iTunes still shows my Gmail address even if I log in using the me.com address).
    Apple support files recommend that most users use the same Apple ID for both iTunes and iCloud. Am I right in thinking that as the 2 email addresses are linked and are the same Apple ID that it won't make any difference what email I use for either (so if I wanted I could use the me.com for iCloud as my "Apple ID" and the Gmail for iTunes, or vice versa or even use one for both)?
    Secondly, I'd like to use the new me.com address I created for FaceTime and iMessage...I have signed into FaceTime on OS X using the me.com address and on my 4S, under their respective setting I've also done this (plus I've put the me.com address for "You can be reached for video calls at"). Can people FaceTime etc. only if they know my me.com address or can they also use my Gmail address, seeing as they are the same Apple ID? I also realise that I can also add my Gmail address as an alternate for FaceTime and iMessages but do I need to, as again they are the same Apple ID?
    Sorry for the long winded post but thought it best to give as much as info as possible and hope it's written clearly!

    You can have the same Apple Id, but you do need to have different email addresses for the "You can be Reached by Facetime At" section under settings.
    If that is o.k, then make sure the email address you set for each device is the one being used to initiate the facetime call.
    If your facetime call is initiated using the email from the Apple ID its effectively like calling yourself.

  • TS1717 Itune Match not happy as I have used 2 different email address ID's how do I combine them into one?

    Itunes unhappy, Match issues!  I think it is because I have used two accounts on different emails.  Can I pull the two together to make just one account?

    Open Accounts preferences in System Preferences. Click on the lock icon and authenticate. Under the user list click on the Add [-] button button to create a new user account for yourself or your father (whoever is not the existing account owner.) Configure the account with a separate username and password.
    Now each of you should have a separate account on the computer. You can each sync your iDevices into completely separate accounts using completely different Apple IDs.

  • I have two separate itune accounts under two different email accounts and would like to combine them under one account.  Is this possible and if so, how do I do it?

    I have two separate itune accounts under two different email accounts and would like to combine them under one account.  Is this possible and if so, how do I do it?

    If you go to Settings > iTunes & AppStore , you can sign out from your account, and sign in with the one you've used to purchase apps.This will not remove any apps you already have on it.
    Then you can go to AppStore and download apps you've purchased (either via "Purchased" button in "Updates", or simply search for them and download them.
    That way you can have multiple accounts' apps on your iPad. When updating, you will be prompted for the credentials for account you've purchased given App with.

  • How can I send email using two different email address that both link back to my one exchange account on my Ipad mini

    How can I send email using two different email address that both link back to my one exchange account on my Ipad mini? 
    On my PC I simply have a master return email address and use a POP for the secondary address.  Both are through the one exchange account without a problem.  I need to be able to do the same on my Ipad.

    Ah, I should have made that clear.  My domain didn't come from google.  It was purchased at and is hosted at dreamhost, but I haven't used their email servers in years - I just route everything through gmail.  I actually have a bunch of domains (with websites).
    Gmail has an option that lets someone with custom domains send (and receive) email through gmail using the custom domain once Google confirms proper ownership of the domain (to prevent spammers and such).  Gmail has a setting for "send email as" which allows gmail to be sent using a custom domain as the sender.  I'm pretty sure Apple's old mobileme had this feature too, but I didn't use it.

  • I send an email from my Iphone to a friend.  My friend receives it on her Iphone, but as text message.  She replies and it goes back to my daughter's phone, a completely different email and phone number.  Why?

    I send an email from my Iphone to a friend.  My friend receives it on her Iphone, but as text message.  She replies and it goes back to my daughter's phone, a completely different email and phone number.  Why?

    We went through my friend's phone and my daughter's email and phone number are not in it.  I have never given my daughter's iphone number to my friend.  Is it something to do with gmail or my apple id?  My daughter (14) has been using my computer as her "base" for HER Iphone. 
    My friend does use her iphone number as an email address as well.
    For instance:  her phone number might look like this:  (493) 305-3958
    and her email address would look like this:  [email protected]
    If I Iphone/email my friend, she receives it as a text message.  Then if she replies to that text message, it goes to my daughter's phone and not mine.  It's completely crazy!  We searched her phone contacts and did not find my daughter's phone number anywhere or attached anywhere to mine.  Since when does Iphone emailing wind up in the text messaging area?

Maybe you are looking for