Select from multiple email accounts in Send Link ...

When I use Firefox's Send Link ... function to email a web address to a friend the "from" email account is always the first account in Thunderbird. Is ti possible in some way to select from other email accounts I have in Thunderbird, or, specify that the default account is the second, or third account listed in Thunderbird?

Sorry, there's no way to change that in Firefox. Try a Thunderbird support forum.
[http://www.mozillamessaging.com/en-US/support/]
or here:
http://forums.mozillazine.org/viewforum.php?f=39

Similar Messages

  • 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.

  • I have multiple email accounts in my iPhone. Before the 6.0 update... I could select what account to send from. Now it's a default. Do I have to go change the email default everytime I want to send an email from a different account?

    I have multiple email accounts in my iPhone 4. Before the 6.0 update... I could select what account to send from each time. Now it's a default. Do I have to go change the email default setting everytime I want to send an email from a different account?

    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

  • If I have multiple email accounts, how can I prevent one of them from sending email?

    If set up multiple email accounts in Thunderbird, how can I prevent one of them from sending email, while allowing others to send?

    Simple answer:
    do not use the email address when sending or replying or forwarding emails. Sending is not automatic, you have to generate the email and click on a Send button.
    You could use an smtp server that will not allow sending using the incorrect server for the email address, so that it cannot send, but if you accidentally use the email address you may get an error message, but at least the email will not be sent. Do this here:
    Tools > Account Settings for the mail account.
    bottom right Outgoing Server - select one that will not accept sending using wrong email address
    OR
    in Outgoing Server(SMTP) select the server you are using for that account
    click on 'Edit'
    deliberately make an error in the server name - remove the port details etc.
    So the details are wrong and cannot send.

  • Multiple email accounts but they are all sending from same account.

    Set up with multiple email accounts but they are all sending from same account. I have checked account preferences and under composing they are to come from account of selected mailbox but this is not happening! Suggestions?

    They are all in the same folder and it says all images are there, but it is only showing 1 card's images at a time. Does anyone know how to fix this?
    This is kind of confusing, on the one hand you say "it says all images are there" and then you directly contradict this by saying "it is only showing 1 card's images at a time".
    Could you explain in a lot more detail what you see (and don't say "it", say exactly what part of Lightroom or what part of your operating system you are looking at), or show us a screen capture?

  • 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.

  • How can I select to send an from another email account within the inserted gmail account?

    How can I select to send an from another email account within the inserted gmail account?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    The MAS should use any credits first and then apply the remainder to a listed bank card.

  • Multiple email accounts in Thunderbird, but email always sent out from just one no matter which i use - how do I stop that?

    I have multiple email accounts on TB. however, whenever I send an email from any of the other accounts, when the email arrives it shows as having been sent from the email account I first set up on TB. even if i am replying to an email received, the reply shows from the original account instead of the one I actually send it from. I REALLY need to fix this fast!!

    You have to set the return address to a different one from the first one (since that will usually be the default) if that is what you want. You can set the identity information from Account Settings > [account name] > Manage Identities button.

  • I can no longer open links from my email account into safari, how can I fix this?

    I can no longer open links from my email account into safari, on my iphone 4.

    Have you tried restarting or resetting your iPhone?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after It shuts down, press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10-15 seconds).
    No data will be lost.

  • Mail 8.2 Sending Messages from Wrong Email Account

    This has been happening more often than not lately on the Mail 8.2 app. It's driving me crazy, and really messing up my business since I have a professional email (using Outlook) and a personal email (Gmail).
    Both email accounts are setup on my Mac Mail. What has been happening is that when I write an email with my professional email (Outlook) and hit send everything seems fine and it will send (like it should!). It shows up in my sent messages in the Mac Mail app under my Outlook account and everything, great!... Oh, but the thing is, it doesn't really send from my Outlook account.
    When I log into my Outlook account on my web browser, the email is not shown to have been sent. But, When I log into my Gmail account on the web... What?! There is the message in my Gmail sent folder! How??? It has my signature from my Outlook account and everything. To add to the strangeness, when I look at my Mail app on my iPhone, it says that the email was sent from my Gmail, and not my Outlook...
    So, Mail on my Mac says sent from intended email account (Outlook), but in reality it somehow gets magically sent from my personal Gmail account... and shows up on the webpages and my iPhone as sent form Gmail... This doesn't happen every time. Just when Mail feels like it I guess, HA!
    This is frustrating. Since it doesn't happen all the time, I never know if people are getting my emails, but I finally got the fluke to happen with a friend. Voila, in fact when this happens even though it's being sent in Mail though my Outlook account, my friend receives the email from my Gmail account with my Outlook signature...
    What is going on? Is anyone else having this issue?
    I need my personal and professional messages synced to my iPhone and Mac, or I would just say good riddance to the Mac Mail app.
    I will just have to start sending my professional messages form the Outlook webpage until this is fixed. This is really unprofessional Apple. I never had this issue prior to Yosemite.
    Hope this made since, it's the best I can make of it.
    Thanks!

    From the Mail menu bar, select
              Mail ▹ Preferences...
    The Mail preference dialog opens. Select the Composing tab from the row of icons at the top. From the menu labeled
              Send new messages from:
    choose
              Account of selected mailbox
    Note that this setting may have no effect if you start a new message while a VIP or smart mailbox is selected in the mailbox list. Those are saved searches, not actual mailboxes.
    If the problem remains, select the Accounts tab in the preference dialog, then select the affected account in the list on the left.
    In the Account Information pane, select the correct server in the menu labeled
              Outgoing Mail Server (SMTP)
    If there's only one server in the menu, select
              Edit SMTP Server List...
    and add a new server with the correct settings. If you're not sure how to do that, try the Mail Settings Lookup.
    Another possibility is that the wrong card in your address book is selected as yours. Select your card in the Contacts application. Then select
              Card ▹ Make This My Card
    from the menu bar.

  • Have multiple email accounts. How to make one the default account when using Send to Mail Recipient?

    We have multiple email accounts. How do I make one of the accounts the default sender address when we Send to a document to Mail Recipient? Or how can I change the order of the email accounts on Thunderbird that they appear?

    To change the default account, Tools/Account Settings, select the account in the left pane, then Account Actions/Set as Default.

  • Why when I send a message my friends receive it from my email account..

    Every time I send a iMessage to somebody that person doesn't receive it from my phone number but from my email account which is annoying...
    How can I fix it/how can I turn it off??
    Thanks

    This is not really enough information to offer informed assistance...
    marilenac wrote:
    why when I send messages from my Iphone, they come back to me?
    However... Check where you are sending them to...
    Make sure you are not sending them to yourself.

  • My iPhone is sending text messages from my email account

    I just did the new iOs 6 update on my iphone and now when i send text messages they show up as coming from my email account rather than from my phone.  Is there a way to change this?

    Go to settings/messages and make sure you have send as SMS turned on.  Then in send & receive make  sure your phone number appears there.  When sending messages while you are connected by wifi it will go view imessage

  • How to select from multiple addresses of account in IC Web Client

    Hi all,
    We are implementing a B2C scenario for IC Web Client. We have customers with multiple addresses. However, when we search the acount, only standard address comes to screen.  We want to be able select the related address, and then confirm the acount with that address.
    Is there any way to customize the Web Client in order to be able to select from multiple addresses of the acount?
    Thanks in advance.
    Edited by: Danisman Danisman on Aug 31, 2010 2:52 PM

    Thanks for the answer. Yes, we are using 7.0 but in the account identification screen, there is no personalize button ( I assume you are suggesting adding an addres block by using that button, right?).
    We checked the necessary customizing : there is an entry for fucntional profile PERSONALIZATION : ALL_ENABLED.
    Should we do something else to show the button?
    Thanks again.

  • Sending but not receiving from second email account

    Hello,
    I have recently added a new email address to an existing POP Mail Version 2.1 account that I have with Eircom. I have been successfully sending out emails from this new account and can send mail to it from another email account without messages bouncing back........yet I cannot receive any mail sent to this new account, only mail sent to my original email address....any ideas?....& does anyone know what happens to all those messages that I have never retreived?
    many thanks Domino

    Hi Domino, and a warm welcome to the forums!
    I'm only quarter Irish, so may not be all that much help!
    What kind of account is it on both ends... POP, IMAP, WebMail?
    Have you checked it with the Webmail?
    http://email.eircom.net/about/tips/

Maybe you are looking for

  • Contribute CS4 Start Page Problem

    Beim Starten von Contribute CS4 tritt eine Fehlermeldung auf: CONTRIBUTE WAS UNABLE TO GO TO THE WEB ADRESS YOU SPECIFIED. THE REQUESTED URL WAS NOT FOUND ON THIS SERVER (ERROR -1100). Als Adresse im Browser erscheint folgender Link: file:///Macintos

  • Best Practices for Workflow Development

    Hi, I'm compiling best practices in developing workflows in TEO/CPO, and accepting inputs. The result will be made available for the community to make use of it, and continuously improve the content. If you have any sort of best practices, please let

  • How much Storage Space

    When I dock my 30 GB ipod, iTunes says I have used about 18 GB and have only about 8 GB free. My iPod says I have only used about 6 GB and have about 22 GB. Anyone know why this is? Does it make a difference? I did have to reload my i Pod twice as it

  • Is Java Compiler a part of JVM or JRE but not JVM? ?

    hi friends... i need clarification....I am completely confused about how things go about from d time v compile to execution...Please can anybody give me a complete description

  • How to display and print CCR showing not only results, high, low or normal, but also normal ranges of tests.

    How do I display and print CCR showing not only my actual results, high, low or normal results, but also normal ranges of each test?  I can do this individually but not for the composite CCR. Thanks.