Changing email software for Quickbooks 2009

I previously used Eudora as my email software. I have now changed to Mail 3.5 that came with my Mac G5. In Quickbooks when I wanted to email an invoice, it automatically brought up Eudora. How do I change it to bring up Mail 3.5 instead of Eudora? Thanks!

You should probably try another forum - Using Mac OS X Leopard? - but have you looked in the Quicken preferences?

Similar Messages

  • Can anyone help me with changing email address for resetting password notification

    Can anyone help me with changing email address for resetting password notification?

    If you know the answers to your security questions, you can change your rescue email address as shown in step 6 in this article: http://support.apple.com/kb/HT5312.
    If you don't kow the answers to your security questions or need other assistance doing this, either contact Apple for assistance by going to https://expresslane.apple.com, then click More Products and Services>Apple ID>Other Apple ID Topics>Lost or forgotten Apple ID password, or contact the Apple account security team: http://support.apple.com/kb/HT5699.

  • Old email is closed.  I have no access to it.  Cannot change email address for icloud in system preferences,does anyone have a way this can be corrected?  I don't have access to icloud.

    Old email is closed.  I have no access to it.  Cannot change email address for icloud in system preferences,does anyone have a way this can be corrected?  I don't have access to icloud.

    Hi Joycars,
    Can you not simply sign out of the iCloud account with the incorrect email? Not sure I'm following?
    GB

  • Change email settings in quickbooks

    How do I change the email settings in quickbooks?

    go log in under your apple id under apple support and
    there change the contact email:-)
    Dear Steve Djokes,
    Thanks not only for replying, but for asking that question about micing vocals!
    Anyway, I have already changed my email address in my Apple ID account, but still, for the discussion group, it shows my old I.D. I'm not that familiar with Apple's site, and I'm not finding my way around very well. I'm just a drummer, still learning to become computer savy. But just for giggles, I went to the support page, and I believe I read every letter, but never found where I could log in.
    Thanks again for that "vocals" post. Good things came out of that for me.
    Doug

  • How can i change email address for security questions and password resets

    I've noticed that my password reset requests are going to an old email acount. In fact, i am not sure where they are going.
    the real issue is that i don't see a way to change it when i am logged in (it took me many tries to actually log back in) to my apple id account.
    I've changed alternate email accounts, but again i don't see a way to change my destination email account for security section of the account.
    Also i would rather reset these via text (ATT has this option for my cell phone account reset and i love it).  I don't see an option like that from Apple at all.
    Any suggestions and help will be much appreciated. Don't want to struggle with password resets every time i need to get in.

    If you're able to supply two of your security answers, click here and follow the instructions to change your rescue email address.
    If not, you need to contact Apple.
    (125051)

  • Changing Email address for BTWiFi-with-FON

    Is it possible to change the username/email address for logging in to BTWiFi-with-FON as the btinternet.com email address I got lumbered with is very long (29 characters) and awkward to key in on a smartphone?
    Solved!
    Go to Solution.

    A1944 wrote:
    pottyperson wrote:
    Keep the phone's Wifi switched off until you actively want to use it. That will probably save on battery usage as well.
    Thanks for the idea, but unfortunately that would not help as I use it on the WiFi at home quite a lot, especially when I have the PC switched off.
    Sorry, I got the wrong end of the stick. You need to set the phone to prioritise wifi connections, but I don't know the procedure for iPhone as I have Android. You could try simply deleting BT WiFi from the list of connections to see if it gets a lower priority next time you connect to it.  
    You can click the white star next to this message if you think it was helpful.

  • Email Software for MAC + Microsoft Entourage Setting

    Hi,
    I would like to know which MAC email software has advanced features, Apple Mail or Microsoft Entourage?
    I like Microsoft Outlook in Windows, but I think in MAC, we have only Microsoft Entourage is available, no Microsoft Entourage.
    The main feature I like is "read request", I think is not available in Microsoft Entourage.
    Also, in Microsoft Entourage, I am getting images from my friend, but every time I need to click on "Download images". So, is there any way to save my setting permanently so i don't need to click every time on "Download images" for emails I am getting from same person.
    I really appreciate your support.
    Thanks.

    Hello Dan
    I see the problem.
    You can import your pst but you're right, it's a different format and copy/paste won't do
    Here is the link to Microsoft How To on this topic
    http://support.microsoft.com/kb/2413370/en-us
    I suppose you could also use bootcamp and have windows with outlook on your mac.
    Also, I'm wondering if using a portable apps would do (I have not tested). You could setup on a USB key with  Thunderbird MAC and Thunderbird PC and see if they can use the same profile.
    All the best
    Olivier

  • How to change sip address after changing email address for bulk users

    We are in the process of adding new primary email address as [email protected] for 500 users. 
    current primary email address is [email protected] and 
    currently all LYNC users has sip address as [email protected]
    Now we need to change the LYNC SIP Address as their primary email address ( [email protected]). does any one has script to pull the users from CSV and change the SIP Address as their primary email address.
    I got below script from internet , but this is not going to help me, as this script is to enable SIP Address and mark the sip address as same as the email address.
    any help in this matter is greatly appreciated.
    $users=Import-Csv .\users.csv
    ForEach ($user in $users){
        Write-Host    $user.alias
        get-csaduser $user.alias | Enable-CsUser -RegistrarPool "PoolServer.domain.com" - SipAddressType EmailAddress
    Srinivasa K

    Raju, getting below error.
    You cannot call a method on a null-valued expression.
    At C:\Srini\lync.ps1:5 char:4
    +    $newAddress=$oldAddress.Substring(0,$oldAddress.IndexOf("@"))+"@test.com"
    +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
        + FullyQualifiedErrorId : InvokeMethodOnNull
    Set-CsUser : Cannot bind argument to parameter 'Identity' because it is null.
    At C:\Srini\lync.ps1:6 char:25
    +    Set-CsUser -Identity $User.Identity -SipAddress $newAddress
    +                         ~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidData: (:) [Set-CsUser], ParameterBindingV
       alidationException
        + FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,M
       icrosoft.Rtc.Management.AD.Cmdlets.SetOcsUserCmdlet
    You cannot call a method on a null-valued expression.
    At C:\Srini\lync.ps1:5 char:4
    +    $newAddress=$oldAddress.Substring(0,$oldAddress.IndexOf("@"))+"@test.com"
    +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
        + FullyQualifiedErrorId : InvokeMethodOnNull
    Set-CsUser : Cannot bind argument to parameter 'Identity' because it is null.
    At C:\Srini\lync.ps1:6 char:25
    +    Set-CsUser -Identity $User.Identity -SipAddress $newAddress
    +                         ~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidData: (:) [Set-CsUser], ParameterBindingV
       alidationException
        + FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,M
       icrosoft.Rtc.Management.AD.Cmdlets.SetOcsUserCmdlet
    Srinivasa K

  • Has Verizon changed email settings for the iPhone?

    Hi-
    have an iPhone with iOS6 installed.  Haven't changed a thing for quite a while, but it stopped receiving Verizon/Yahoo emails yesterday (using the built-in Mail app).  Did Verizon change something on the email settings?  My emails are coming into my home computer so my password is correct and active.
    thanks

    I've been wracking my brain over this for a few days and I finally found the solution. Before it was enough to just use your username to access your email account, but since Yahoo's outage you apparently need to add "@verizon.net" to the end of your username for it to work. I was going crazy because I quadruple checked my port and SSL settings on my phone like all the other forum posts suggest. All my settings lined up with what they should ave been but still wouldn't work. On a whim, a final desperate try before I deleted the account from my phone, I added the "@verizon.net" after my username, and the !#@%# thing worked! Give it a try. It certainly won't make it work any LESS.

  • Changing email addresses for AppleID

    I have recently changed my email address for an active AppleID. However,  for various reason I would like to change it to another email address that already has an unused, mistakenly created, AppleID attached to it. I know I can't cancel an AppleID, but can I:
    - reallocate the unused AppleID to a new email;
    - rellocate my active appleID to the email address that was previously linked to the old unused AppleID?
    Would love to know if this works before I start messing around.

    Yes and yes. You can use an old email for the unused ID (even one that is no longer functional). You do not have to verify when you change it - it just has to be an email address. Once you have changed the email on the unused ID, you should be able to use it for your active Apple ID.
    Cheers,
    GB

  • Change email address for icloud

    I have 2 iphones, that for some reason are both linking up to the same account.  I want to delete an icloud account,  i cant remember the password and it says my other information is wrong (ie dob etc) i don't know which email address its linked to (its not the icloud username email address for some reason)  I tried going into icloud on my phone and it just keeps saying verifying and asks me to input password.  

    If it says verifying in Settings > iCloud, try to keep hitting cancel over and over until it eventually stops, then hit delete account at the bottom.
    If that doesn't work, you will need to contact Apple to figure out where that Apple ID is linking to so you can get it reset and removed.

  • Changing email address for Preferences???

    Hi Everyone,
    This question actually has nothing to do with SQL! I am having trouble working out how to change were my email alerts are being sent to! I login with my hotmail account, but email alerts (concerning my threads) are being sent to my work address. I can't
    work out how to change were alerts are sent to...such a seemingly simple thing! However the MSDN site isn't the easiest to set preferences in!!!
    Primarily I use the MSDN site for learning about SQL so I am specifically interested in changing where alerts related to the following URL -http://social.msdn.microsoft.com/Forums/sqlserver/en-US/ are sent to...
    Of course I have Googled this, but with NO LUCK (admittedly I didn't get super desperate and Bing Search!).
    Any help here will be greatly appreciated. If your an Administrator with enough skill to move this thread can you please share instructions on how to change the notifications email address???
    Kind Regards,
    David

    Hi David,
    You can change the email address notifications are sent to via 'My settings'. To get there, click on the 'Quick access' dropdown in the upper left (under the 'Ask a question' button) and then click on 'My settings'.
    There's a 'Configure alerts' section there where you can change the address.
    Just as a heads up (you don't have to worry about this, but I'll post this for future people who find this thread), making any changes in 'My settings' mangles all HTML tags in your signature block. You'd need to paste in fresh HTML before saving the changes
    to ensure that your signature doesn't break.
    EDIT:
    I just learned that you'll also need to confirm the new address that you enter into the 'Configure alerts' section before notifications will start being delivered to this new address. The confirmation email may take quite a while to appear.
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Need to change email address for all users / employees and their supplier

    Hi All,
    Our organisation is going through some infrastructure changes and all employees email addresses will be changing throughout the department in the next few weeks.
    Is there a supported method to update the FND_USER.email_address, PER_ALL_PEOPLE_F.email_address and Employee Supplier email address within our Oracle system to the employees new email address
    Would you be able to provide a solution or recommend a datafix (SQL Update script)?
    Many thanks,
    Lance

    Oracle's update:
    UPDATE
    ======
    kindly there is no ready code script for this issue
    as per Oracle policy ,customizations are not supported
    Thank you,
    Global Customer Services
    I'll look into the Packge FND_USER_PKG thanks and see what i can spot. Any one ever done something like this before?
    Thanks,
    Lance

  • Change email program for scan

    I recently quit using Outlook.  I now use my business gmail account. Whenever I want to scan a document via email it defaults to the Outlook account.  How can I change it so that I dont have to scan to desktop and then cut and paste to google mail?

    Hi @ddimnrd 
    Unless your printer supports editing the email server or scanning to different email profiles (see product specifications), sending a scan directly to an email message requires that a local email client is installed and configured on your computer. Additionally, Web-based email services (Gmail, Yahoo Mail, Hotmail) must be configured through your local email client to scan directly to email.
    What printer do you have?  How Do I Find My Model Number or Product Number?
    What operating system do you have? Mac or Windows?
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Change email address for my notes?

    I have recently changed my email address and set my new IMAP email address on my iPhone 4. However iTunes won't sync Notes to my iPhone now as all the previous notes are shown as being my old email address. How do I changed the registered address for the Notes?
    Thanks
    Tony

    Hi @TFZ,
    Welcome to the HP Support Forums. I see that you would like to learn how to change the ePrint email address your printer currently has.
    To better assist you, would you please provide some additional information:
    What model/product number of HP printer do you have? How Do I Find My Model Number or Product Number?
    How is the printer connected (USB cable, ethernet, or wireless)?
    What operating system are you using on your computer? whatsmyos.com
    Are you getting any error messages? If yes, what do they say?
    Thank you.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

Maybe you are looking for

  • Batch Renaming in Bridge CS6

    I take pictures of a swim team and I keyword tag each image with the swimmers name.  I would like to batch rename and save in a new folder the files so they have the original filename and then the keyword name.  I don't see that as an option in the m

  • How do I call a SP that returns a sequence number from CMD

    Hi ,  I have a requirement to call Sequence.NEXTVAL function from CMD . I believe I would have to call a SP to acheiev this I was also told that there is a generic mapplet for invoking SP from CMD  Could somebody please point me to the right place Th

  • Updated Date not populated for Vendor in R3 Tables

    Hi I made few changes for Vendor in R3 but it didn't update UPDAT field in LFA1 Table whereas i could see other data fields changed that i did in the screen. Could you pls. tell me why is it Or Is there any configuration required for updating Update

  • Paramform=yes and Rep-52007

    I have forms and report services 10.2.0.2 installed on my Win2003 server. Reports runs perfectly with paramform=no but when i use paramform=yes it show html param form but pressing submit query it show The page cannot be displayed page. the same repo

  • Help!! Sync Problem Only When Trying to Update Software on My 755p

    I am trying to update the software on my 755p.  I am syncing with a usb.  The sync goes fine when I do a hotsync, but when I try to run the updater for the palm software, it keeps telling me that the "Device Connection Failed."  It tells me to connec