Multiple Email accounts and 1 reply to address

I have 3 Email accounts setup on my Iphone one is Gmail one is .mac and the third is my Exchange IMAP email. my question is when i send an email from either my .mac account or my Exchange IMAP account and when the person replies to the message it automatically goes to my Gmail account. the email accounts are setup like this on the phone 1. Gmail 2. .mac 3 IMAP exchange. Does anyone know how to change the reply to address so when I send a message from my .mac account they reply to the .mac account and the same way for my IMAP account?
Thank you,
Jason.

I found the Other short cut and that did not solve my problem.
I also tried removing all of my email accounts from the phone except the IMAP Exchange account and I then sent myself a test message and the return address is still my Gmail email address. The Gmail email address is what is set up on my apple account so do you think that when I registered my phone through Itunes that that email address is set up for auto reply on my phone since it is my contact email address on my account?

Similar Messages

  • HT2490 how do i change my settings for iMessage on an iMac? I want to be able to use multiple email accounts and cell number as well.

    how do i change my settings for iMessage on an iMac? I want to be able to use multiple email accounts and cell number as well.

    Open Messages and choose Preferences from under the menu bar program's name and add source accounts to use.

  • Multiple email accounts and mail check frequency

    If I understand correctly, I can have multiple email accounts on the iPhone, one for work, one personal for example. Is it possible to have distinct update settings, or to easily take one offline? Say I don't want my work email retrieved during the weekend. We're all set to do the family thing with iPhones, but this question came up. With my Treo I frequently turn only one or the other of the accounts on, depending on what I'm doing.
    How distinct are the accounts? I assume the mail is in separate accounts as on the desktop?
    Thanks

    Thanks. That's good news.
    In Mail app I have one account, with two different "from" addresses set. I select the proper address depending if I'm writing family or a mailing list. Is that same feature available as it is on the desktop?

  • Multiple email accounts and multiple computers (Linux)

    Hi there, I've been searching for a solution to this problem for a while and there seems to be no solution.
    I have 40+ email accounts (and adding more all the time)
    I use 3 computers (all running the same version of Linux and Thunderbird)
    All my email accounts are IMAP of my own server(s)
    My problem - when I add an account on one computer, or new folders / filters etc I often forget or don't have time to add them on the other computers, so now my 3 computers have very different configurations.
    Is there a way to have the Thunderbird configuration on a server (remote) so that when I make changes on one computer they will be replicated automatically on the others?
    I realise I will have to manual re-sync the configs but once I have them all the same again I'd like them to stay that way.
    Thanks.

    Thank you for those links Toad-Hall.
    I've followed the steps and I'm now waiting (been waiting considerably longer than an hour) for Google Drive to sync the profile directory.
    My profile directory is 147 MB, which worries me as the speed of the internet connection I have is not great (I'm in Thailand) and if Thunderbird is going to need to sync many files it could be forever sucking up my bandwidth.
    Still I'll wait and see if what I've done (creating a new profile on Drive and copying the old profile files to the new folder), actually works and then try pointing my other computers to this remote profile.

  • Multiple email accounts and calendars on ipad

    My wife and I both have iphones and we each have two email accounts for a total of four email addresses altogether.  I just ordered an iPad Air and while I'm waiting for delivery I started thinking about managing this collection of accounts.  She has a hotmail web mail account as well as a work related Microsoft exchange account. I have a Hotmail web mail account as well as an AOL web mail account.
    With two independent iphones this works just fine.  While the iPad will technically be "mine" things will get very weird in our household if my wife can't just pick up the ipad and check her email while we are hanging out in the living room and it's just lying there asking to be picked up and used.
    What other applications are affected by this issue - calendars and notes and messaging for example?
    Thanks!
    Pete D.

    Frankly, sharing an iPad like that would be a disaster in my humble opinion.
    Not only calendars, notes, reminders would be co-mingled, but so would bookmarks, iMessages, ...
    I strongly recommend against sharing an iPad.

  • I have multiple email accounts and want to view incoming mail from all accounts in one folder, without having to click on each individual account, how can i do

    thanks

    bruce,thanks for your help. I don't have an advanced button under the storage tab. the message storage is below the advanced button, and when I click the advanced button, it doesn't give me any options for message storage. do you think I am missing an ad on that I should have ? thanks and happy thansgiving

  • How can i read multiple email accounts?

    hi,
    my program is to get emails from multiple email accounts, and grab the attachments, but it doesn't work properly.
    If there's only one email account, it works fine, but if there are more, it looks like that the program always goes into the first mail account to read the messages. i suspect that the 'Server' or the 'Session' are not reset before each connection, i printed out the connected 'Folder', it looks fine, but every time the 'Folder.getMessageCount()' returns the same number of messages as the first email account has.
    Here's my code:
    // this is to get the folder, mostly 'inbox'
    // serverString is like: "protocol://username@host/foldername"
    // all parameters are retrieved from the Database
    public static Folder getMailFolder(String serverString, String username, String password) throws Exception {
            // URLName server = new URLName("protocol://username@host/foldername");
            Folder folder = null;
            URLName server = new URLName(serverString);
            // the session is created by grabbing the authentication using the username and password
            // the MailAuthenticator is an inner class as shown at the bottom
            Session session = Session.getDefaultInstance(new Properties(),
                    new MailAuthenticator(username, password));
            folder = session.getFolder(server);
            // this message always show the same number of messages
            System.out.println("folder retrieved for " + serverString + ", with " + folder.getMessageCount() + " messages");
            return folder;
    // this method is to get the messages from the folder
    public static void getEmailWithSubjectContaining(String emailUrl, String username, String password,
                  String regex, String filepath, boolean addPrefix, boolean delete)
             throws Exception {
             Folder folder = getMailFolder(emailUrl, username, password);
            if (folder == null)  return;
            folder.open(Folder.READ_WRITE);
            Message[] msgs = folder.getMessages();
            // Here is my problem, the msgs.length always returns the same value
            // which is the number of messages that the first email account has
            System.out.println("Totally there are " + msgs.length);
            for (int i = 0; i < msgs.length; i++) {
                 String pathToSave = filepath;
                   String subject = msgs.getSubject();
                   System.out.println("Email subject: " + subject);
    // examine if the message should be dumped and deleted
                   if (!subject.matches(regex)) {
                        System.out.println("Email subject doesn't match regex: " + regex + ", this email is ignored.");
                        continue;
                   Part p = (Part) msgs[i];
    //               p.getFileName();
                   if (addPrefix) {
                        pathToSave = filepath + "/" + getFilenamePrefix(subject);
    // this method call is to save the attachment
                   dumpAttachment(p, pathToSave);
                   msgs[i].setFlag(Flags.Flag.DELETED, delete);
              folder.expunge();
    folder.close(false);
    // this method calls getEmailWithSubjectContaining using a loop
    public static void getEmailWithSubjectContaining(String dbUsername, String dbPassword, String dbUrl) throws Exception {
         Connection con = null;
         if (dbUrl == null || dbUrl.equals("")) dbUrl = "jdbc:mysql://localhost/email_util";
              try {
    // here is just simply get the Database connection
                   con = MySqlJDBCConnection.getConnection(dbUsername, dbPassword, dbUrl);
                   Statement s = con.createStatement();
                   String sql = "SELECT * FROM email_fetching_config WHERE active = 1";
                   ResultSet rs = s.executeQuery(sql);
                   while (rs.next()) {
                        String protocol = rs.getString("protocol");
                        String url = rs.getString("url");
                        String box = rs.getString("email_box");
                        String username = rs.getString("username");
                        String password = rs.getString("password");
                        String regex = rs.getString("sub_regex");
                        String path = rs.getString("save_to");
                        String prefix = rs.getString("append_prefix");
                        boolean delete = rs.getBoolean("delete");
                        String emailUrl = protocol + "://" + username + "@" + url + "/" + box;
                        boolean addPrefix = (!prefix.equals("") || prefix != null);
                        System.out.println("Ready to grab emails from " + emailUrl + ", path to save is: " + path);
                        try {
                             getEmailWithSubjectContaining(emailUrl, username, password, regex, path, addPrefix, delete);
                        } catch (Exception ex) {
              } catch (Exception ex) {
                   ex.printStackTrace();
              } finally {
                   MySqlJDBCConnection.close();
    ********* Authenticator *******
    class MailAuthenticator extends Authenticator {
    private String username;
    private String password;
    public MailAuthenticator() {
    public MailAuthenticator(String username, String password) {
    this.username = username;
    this.password = password;
    public PasswordAuthentication getPasswordAuthentication() {
    return new PasswordAuthentication(this.username, this.password);
    This is all my program doing, anyone knows what the program is? thanks for your help!
    regards                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Assuming you're passing in the right URL, I don't see the problem.
    Still, try change session.getDefaultInstance to session.getInstance
    and see if that helps. If not, turn on session debugging and check the
    protocol trace for clues. If you still can't figure it out, post the protocol
    trace.

  • How do I set a preference for opening one of multiple email accounts first?

    I have multiple email accounts and prefer to open one of them first when I open the email app.  After setup of all my email accounts the app is opening one of the accounts that is not my preference even though I setup my preferred account as the default.  I've deleted all accounts and started over thinking that the order of the setup made a difference but it has not helped.
    In particular I want an Exchange email account to open first and this account is not sync'ed with iTunes.
    Would appreciate any suggestions.
    Thank you,

    The only way that you can do something even close to what you are trying to do is to back out of whatever you are in while using the mail app in order to get back to the main mail window that shows all of your inboxes and all of the different email accounts under the accounts heading. Then you could choose to use the Exchange account first from there.
    You would have to do this every single time that you are done with mail and it isn't exactly what you are looking to do and it's hardly worth the time anyway.

  • Setting up multiple email accounts on multiple .mac accounts

    There are three of us in the household, all with our own .mac accounts (created off of one master account) and our own usernames on this computer. I have set up multiple email accounts and am having trouble getting those accounts organized into Mail. Can I set it up such that each user can access his/her email when logged into his/her respective area on this mac? For example, I want to be able to log in as myself and read my email, then let my wife log into her area and read her email. I have tried and really messed it up. We can read mail but not send it. When i try to send a message pops up informing me that "cannot send message using the server (server name here). Try again later."

    Can I set it up such that each user can access his/her email when
    logged into his/her respective area on this mac? For example, I want
    to be able to log in as myself and read my email, then let my wife log
    into her area and read her email.
    Yes and this is how it should be done with each user's email account only created in Mail under their computer login account so each user's email along with all other data is kept separate and protected in their own home folder/directory. Of course this only works when disabling automatic login.
    Who is your ISP used for connecting to the internet and is each user/family member also accessing an email account that is provided by your ISP?
    Something to try first and this must be done with the .Mac SMTP server in Mail for each user's login account.
    Go to Mail > Preferences > Accounts and under the Account Information tab for the .Mac account preferences at the SMTP server selection, select the Server Settings button below.
    Enter 587 in place of 25 in the Server Port field and when finished, select OK to save the changed setting.

  • Creating default with multiple email accounts

    I am a new user. I have an old iphone updated to 2.1. I have multiple email accounts and I want to set one as the default. Does anyone know how to do this? Thanks for your help. May your candidate win (as long as it begins with O)

    Go to Settings > Mail, Contacts, Calendars.
    Under the Mail section at Default Account, select the account that you want as the default.
    The following is provided underneath.
    +Messages created outside of Mail will be sent from the default account.+
    As an example, the default account will be used when selecting a photo to be emailed.
    If you have account A selected as your default account and select new message when accessing a mailbox for account B, account B will be the account the message is sent by.

  • HT1692 Have recently installed itunes and outlook on a new computer.  Have multiple email accounts set up in Outlook tho only use contacts and calendar in relation to one of these. Cannot sync itunes with the correct contacts and calendars, Help!

    My new computer is 64-bit running Windows 7 pro, SP1 and Microsoft Office 2010 Pro Plus 32-bit
    My phone is a 4S runing iOS 6.1.3
    Very frustrated now that I have recently installed itunes and outlook on this new computer.  Everything worked perfectly ok on my laptop which was also 64-bit Windows 7 and running 32-bit Microsoft Office 2010 Pro.  I have multiple email accounts set up in Outlook tho only use contacts and calendar in relation to one of these. Cannot sync itunes with the correct contacts and calendars, when I sync the calendar and contacts are empty.  Not sure if there is any way to point itunes to particular address books and calendars.
    I have installed and uninstalled itunes 3 times and thank goodness have a backup
    Can anyone help please?
    thanks in anticipation

    I had my home computer set up to sync to work's Exchange server. It worked well, but I didn't like seeing work email messages and other programs trying to sync with my default Outlook folder, which was then the Exchange (& work related) .ost file. I know there are various ways to manage those problems using filters, view, subfolders, etc., but it was a hassle for me. I think it could work well for many other folks.
    For now, I have published my work calendar and subscribed to that calendar on my home computer. So I have view only access to my calendar on my home computer (and I can add/edit calendar items on my iPad (or Outlook Web Access) when away from work). This is not quite what I wanted, but it may work.
    It almost makes me long for the days when I used my Windows Mobile Treo to sync back and forth between exchange at work and outlook at home (but had many sync conflicts as a result).

  • I have multiple email accounts.  One is a google email and another aol.  I have the aol going into my google.  I Now Go Lead Generate! Am using outlook on my pc.  How can I get my outlook to share with my ipad?

    I have multiple email accounts.  One is a google email and another aol.  I have the aol going into my google.  I Now Go Lead Generate! Am using outlook on my pc.  How can I get my outlook to share with my ipad?

    In Mail Preferences/Accounts/each GMail account, set up the SMTP Outgoing Server for each account separately, going into SMTP name/edit/Advanced and specify the Username of each account.  The Outgoing servers must be two different servers, authenticated by the Username and Password of each.
    Otherwise, the GMail SMTP server will change the from address to that of the account where the SMTP server was setup.
    Ernie

  • Multiple calendars and multiple email accounts?

    How can I associate iCal calendars to Apple Mail accounts?
    Let's say I have two email accounts configured in Apple Mail ("home" and "work") and I have two calendars with the sames names. When I add an event to iCal, I want to use the matching email account for sending invitations, depending on which calendar I've selected. Is this possible? Otherwise my private email address might get used for invitations to work events and vice versa.

    Wow, does anyone know how to do this? I really need to have multiple calendars that reference multiple email accounts in iCal... Is there a trick on how to do this? Or, is there a better place to post so Apple puts this feature in the next software release?

  • Using multiple email accounts, smtp from provider, sender's address is the same for all email accounts

    Ok
    I'm sure this is an issue for many of us, but I cant find a solution for this on the net.
    So I had set up multiple email accounts. My main account is gmail, but I'm using several others. The smtp server had to be the same which was from my ISP for all email accounts (apart from gmail which has it's own).
    Now, when I send email from these accounts, the sender's address will always be ***@virginmedia.co.uk. Obviously, since thats what the smtp is for.
    But what if I want to send emails from these accounts and want to be the sender accordingly? like ***@yahoo.com or ***@freemail.com etc...
    Is there a way to get around these? If they dont have their own smtp servers? Or they can only be used to send emails through their web-based email page?
    Hope it makes sense, sorry for my crap english.
    Thanks
    Daniel

    Can you tell us which is the mail account ( hotmail, gmail or any personal)
    If I help you with any inquire, thank you for click kudos in my post.
    If your issue has been solved, please mark the post was solved.

  • My computer has been infected with a Trojan Horse.  It has completely taken over my Mac email account and was sending out malicious email to everyone in my address book.  At the same time it infected my iPhone---I am no longer able to receive or send emai

    My computer has been infected by a Trojan Horse.  It has taken over my Mac email account and began sending out malicious emails to everyone in my address book.  I cleared out my MAC address book and began using my AOL email account. It took a few days and then my AOL email account was infected and has now been send out malicious email to all my contacts for over a month.  It has also infected my iPhone--I am no longer able to send or receive emails on my iPhone.  Also, once the Trojan Horse began using my AOL email it completely blocked me from using my MAC account by sending never ending popups asking for my email password to access my MAC email account, but it never accepts my pass word.  The TH has also slowed down everything on my computer.  It's like I am working on an old PC with dial up connection instead of the high speed digital connection that I have.  The little color wheel spins constantly as I wait for sometimes over a minute for a page to pull up.  If it pulls up at all.  I have tried to use the 2 disks that came with my computer to completely remove everything on my computer and then reinstall all the programs, but I am not allowed to sweep my computer clean.  I thought maybe my disks that came with my computer were defective so I called Apple and they sent me 2 new disks.  I am not able able to clear my computer with the 2 new disks either.  I have done this before successfully so it's not something new to me.  I do remember when I believe my computer became infected:  I had googled an unusual sewing term, and I was opening what appeared to be legitimate sites, when all of a sudden a pop up appeared that said that my computer had been infected.  I immediately shut my computer off, but it was too late.  I downloaded a virus program for Mac, and it has never found a virus or problem at all.  I think it is part of this Trojan Horse, but I am unable to delete it from my computer.  It refuses to uninstall.  The Mac Trojan Horse is real and it is terrible.  If anyone has any suggestions for me I would be very appreciative,
    Beth
    vu

    Install ClamXav and run a scan with that. It should pick up any trojans.   
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

Maybe you are looking for

  • Printing a control panel at a specific time of day automatica​lly

    I would like to be able to print out a control panel at a set time each day. I know that I can connect the print data member of the panel to another object. What should that object be? Thanks

  • DLL in TestStand

    Hi,        I am having a DLL that is returning a pointer to character. Is there any provision to receive that pointer in TestStand. I am using this DLL as an adapter in TestStand. While the DLL is getting attached, TestStand is not recognizing the pr

  • Updating a standard table from a custom tableq

    hi to all experts, My requirement is to update a standard table from the maintenance screens of the custom table whatever the data the user maintains in the custom table and save should automatically saved in the standard table for that i decided to

  • Formating Bold Table Borders in a report template

    I'm using the Alternating-Color-Rows template in my reports. Is it possible to group columns together using thicker table borders after specific columns. How would you set this up in the template? e.g. | | || | | || | | || | | || | | || | | || | | ||

  • IChat Fails to initiate video chats

    I have iChat AV 3.1.6 (v441). I am studying in the UK and use it a lot to video chat with familly in the US. This worked great for 5 months, but recently whenever I try to initiate a chat (or someone else invited me) I get the error "failed to start