How to separate multiple recipients on a to: or BCC: line

Cannot know how to separate the recipients on a single line. Nowhere is it stated. Other forums tell a colon or a semicolon. Neither one works. When I add or the other, the first address turns red, which means that it is no longer recognized by Thunderbird. Use TB 24.6.0. Thanks in advance.

Technically Thunderbird can't stand any kind of separation of multiple addresses on a single line. A line of an address is the approach that Netscape has taken, and no one has changed, it.

After saying that the RFC indicates a comma is an address separator to make it work for addressing. Just because you can place comma separated addresses on a single line and send the mail does not mean that the rest of the program supports that. That's why your red writing.

Tags: Thunderbird

Similar Questions

  • I created a message to multiple recipients, but now I want to delete * all * of them - how?

    This seems to be a common problem, but I can't find a quick way to do (38.4 TBird on 10 to win).

    I create a message and add many recipients. After a few changes, I realize I want to only one recipient. How can I remove all the recipients of the message, rather than delete them one after another after another?

    Here's a slightly different version of the question - I create a new message to multiple recipients, but later I realize I need to do the BCC recipients, then addresses do not appear in each message. I can't find a way to change them all at once, I can change only one at a time. I would be happy to all delete them and add names such as BCC, but see my first question! Thank you, I wonder if I am missing a simple technique.

    question 1: the address close button add-on offers a close or delete X in each box of the address. Not quite all-at-once, but easier than the selection and removal of addresses.

    2nd question: the use of the Bcc instead Add on is adjustable and you harass, or page on Bcc automatically, and it offers in bulk to Cc/BCC/switching.

  • How to send an email to multiple recipients and keep the list future emails?

    How can I send an email to multiple recipients and store the names of future emails?

    Are you using an e-mail application to send and receive your emails?

  • How to select entire groups or to multiple recipients in MAIL, rather than one at a time?

    How to select entire groups or to multiple recipients in MAIL, rather than one at a time?

    One way is to use the app to create a group with the intended recipients. Then when composing the email just type the group name in the To: field.

  • How to block the recipients to see the list of multiple recipients on the email sent with outlook express 6.0?

    How can I block message recipients to see the list of multiple recipients on the email sent with outlook express 6.0?

    Put the recipients in the BCC (blind carbon copy) field instead of the Cc field. If you don't see the BCC field and then in your new message go to view > all headers.

    DavidF

  • How can I send an email to multiple recipients without showing the e-mail address of the recipients?

    I received emails from people who do not have other names of recipients.  How they do that?  They create a group first Contact?

    I have an occasional need to send e-mail messages to multiple recipients, but don't want them to know the list of recipients.  Is this possible?

    I use Windows Mail with Vista.

    Thank you.

    You are welcome

    This forum post is my own opinion and does not necessarily reflect the opinion or the opinion of Microsoft, its employees or other MVPS.

    John Barnett MVP: Windows XP Expert associated with: Windows Expert - consumer: www.winuser.co.uk |  vistasupport.mvps.org | xphelpandsupport.mvps.org | www.silversurfer-Guide.com

  • How can you send an email to multiple recipients easily?

    I want to send an e-mail containing links to multiple recipients. Is there an easy way to do this?

    You have the box contact enabled in the window of writing. Open a window of writing and press F9.

    Double-click contacts to add address fields or select multiple contacts by holding the CTRL key while clicking on them. When you have selected using one of the buttons add to down.

  • Send email via SQL attachment to multiple recipients error

    Hello

    I found the code below on this site in a post. I changed to my database and it works very well. The email is sent to the recipient with the attached to CSV file. Saving time huge and very grateful.

    What I'm trying to accomplish is now email to send to multiple recipients. When I try to separate the names of beneficiaries by a comma or a semicolon, I get the following error.

    Error report:

    ORA-29279: SMTP permanent error: 501 5.1.3 address not valid

    ORA-06512: at "SYS." UTL_SMTP", line 54

    ORA-06512: at "SYS." UTL_SMTP", line 140

    ORA-06512: at "SYS." UTL_SMTP", line 488

    ORA-06512: at line 14

    1. 00000 - "SMTP permanent error: %s."

    * Cause: A permanent SMTP error occurred.

    * Action: Correct the error and retry the operation of SMTP.

    I thought that this issue would have been made upwards already, but when I search the site I can't find a post that solves my problem. If anyone knows how to fix this or point me in the right direction, I would be very grateful.

    Thank you

    declare

    SMTP UTL_SMTP.connection;

    response UTL_SMTP.reply;

    v_lbl_str VARCHAR2 (5000);

    procedure W (line varchar2 default null value) is

    Start

    UTL_SMTP.write_data (smtp, line | utl_tcp.) CRLF);

    end;

    Start

    SMTP: = UTL_SMTP.open_connection ("serverinfo", 25);

    -/ / IMPORTANT: specify the host name of the platform sends mail!

    UTL_SMTP. HELO (smtp, sys_context ('name', 'host'));

    UTL_SMTP.mail (smtp, ' [email protected]'); - that THE MAIL IS COMING FROM

    UTL_SMTP.rcpt (smtp, ' [email protected]')-WHO THE MAIL IS GOING TO

    UTL_SMTP.open_data (smtp);

    -/ / mail header

    W ("MIME-Version: 1.0 '");

    W (' Content-Type: multipart/mixed; limit = "-_ = _NextPart_001_01C87DCB.") (CD85F300"');

    W (' topic: topic); -THE SUBJECT OF THE EMAIL

    W (' from: user@company' "); -NAME OF SHOW ON TEH LINE

    W (' TO: [email protected]'); - NAMES OF SHOW ON THE to LINE

    -/ / mail body text

    W() ;

    W ('-_ = _NextPart_001_01C87DCB.) CD85F300');

    W (' Content-Transfer-Encoding: 8 bit "");

    W (' Content-Type: text/plain "");

    W() ;

    W ("Hello");

    W() ;

    W ('words.');

    W( '');

    W() ;

    W ("cordially,");

    W ("person");

    W() ;

    W ("PS: it is a system generated email.'");

    -/ / mail attachment

    W() ;

    W ('-_ = _NextPart_001_01C87DCB.) CD85F300');

    W (' Content-Disposition: attachment; filename = "filename.csv' '");

    W (' Content-Type: text/plain "");

    W() ;

    W ('headers1' |) ','|| "in-tete2"); -THIS WILL WRITE THE HEADERS ON THE ATTACHMENT

    FOR C IN (SELECT header1, tete2 table)

    Loop

    W (c.header1 | ',' | c.header2);

    End loop;

    W ('-_ = _NextPart_001_01C87DCB.) CD85F300');

    UTL_SMTP.close_data (smtp);

    UTL_SMTP. Quit (smtp);

    end;

    For each recipient, you must run the command recipient. If you need code UTL_SMTP.rcpt () for each recipient. For example

    UTL_SMTP. RCPT (smtp, ' [email protected]');

    UTL_SMTP. RCPT (smtp, ' [email protected]');

    You must also change your e-mail header to indicate who receives mail. The email itself is text - and you must make sure that it is correct. The SMTP server does not rewrite the mail headers to show user1 and user2 has received the e-mail message. Your code must do this.

    For example

    -write FROM and TO e-mail headers

    W (' of: Tom [email protected]> ');

    W (' to: Harry [email protected]>, Sally [email protected]> ');

    If you want to CC or BCC a person - all simply add a call to UTL_SMTP.rcpt () to the e-mail address of that person and change the header of e-mail message accordingly. (i.e. in the case of a KIC, you would omit his name and address in the e-mail message header).

  • How to scan multiple pages into a single document

    I use XP SP3 on the HP 510 laptop and printer HP Photosmart 7510e. How to scan multiple pages in 1 document? PDF is also only available document format?

    Thanks for the tips

    Hello

    Please perform the below mentioned steps that should solve the problem.

    Click the icon of the printer (on the desktop), select the scanned under the side of right, notice in the window of advanced settings under file type is a checkbox called "creating a separate file for each scanned page. Make sure it is not checked.

    Kind regards
    Jabzi

    Give Kudos to say 'Thank you' by clicking on the White Star under my name.

    Click on 'accept as Solution' if it has solved your problem, while others may find it.
    I work for HP

  • Get multiple recipients of menu item TEXT context

    I added my menu item custom to the SMS composer with the following code.

    ApplicationDescriptor app = ApplicationDescriptor.currentApplicationDescriptor();
    ApplicationMenuItemRepository repository = ApplicationMenuItemRepository.getInstance();
    repository.addMenuItem(ApplicationMenuItemRepository.MENUITEM_SMS_EDIT, mySmsMenu, app);
    

    Then I implement the run method of the ApplicationMenuItem as follows:

    public Object run(Object context) {
            TextMessage c = (TextMessage)context;
            if (c != null) {
                String sendTo = c.getAddress();
                String msgBody = c.getPayloadText();
    
             }
    }
    

    I get the message and a single number of recipient successfully. But how do I manage for multiple recipients? He even supported?

    Thank you

    This is not currently supported.  I will pass on this feedback to our product management team.

  • Problem with sending SMS programmatically to multiple recipients:

    Hello world

    I try to send information by SMS to multiple recipients at the same time programmatically. When I am trying to send SMS messages to a recipient, it works fine. I am able to send the data to a recipient successfully without any problems. But when I try to send to multiple recipients (more than one) in the code below loop 'for', it does not send to all recipients. That is to say, sometimes he sent the data to the only recipient if there are two numbers of beneficiaries (or) sometimes is not even send SMS to anyone (or the) sometimes sent to all recipients. Like that it is not consistent way when trying to send to multiple recipients at the same time.

    I even tried to use 'invokeAndWait' before calling the SMSThread code, but still the same problems.

    Could someone guide how I can resolve to send content to multiple users at the same time?

    public void SendMultipleSMS()
        {
            // multiple recipients stored here
            _data = (Vector) store.getContents();
            long totalSize = _data.size(); // totalSize - recipients count
            boolean yesLastSMS = false;
    
            // totalSize - recipients count
            if ( totalSize>0 )
            {
                _payload = null;
                _payload = contactsDetToSend(); // Content to send
    
                for ( int i=0; i			 

    I fixed it by moving beneficiaries 'for' code for the loop inside the SMSThread itself and sending to multile numbers at a time.

  • the same to send a questionnaire to multiple recipients

    I need to send a questionnaire to multiple recipients. I need them to fill it out, sign, then send it back.

    How far do with esign is?

    Hello Cory,.

    Model options are provided paid account. Please inbox me your email address so that I can check your account type. In addition, according to the guidelines of your workflow, we have a feature called MegaSign wherein you can send the same document to several signatories and to individually sign the document. This feature is available in enterprise-level accounts.

    This is the same documentation:

    Send a sign of Mega with a CSV file. Services Adobe eSign

    Kind regards

    -Usman

  • I sent a PDF file with many pages and need to send only 1 page to a client.  How to separate the pages to make the individual PDF files?

    How can I separate multiple pages in a PDF format to send only the pages needed in PDF format?

    Hello

    First, you need Acrobat to perform this function.

    You can extract pages to create an individual PDF file.

    Acrobat help. Rotate, move, delete and renumber PDF pages

    Concerning

    Sukrit diallo

  • How to export multiple multitrack clips - I don't want to mix

    Hello. I can't understand how to export multiple clips in multitrack view. The screenshot should show what I want to do: I have three long pieces, several hours each. I want to cut a part of each track to a single selection. I could do this for every song in my record and then customize the level and EQ for each song, and not for the duration of the track.

    So, how can I do? How to make a selection in the multitrack view and use this selection to produce separate tracks that start and stop at the same place? I don't want to mix. Thank youaudition.jpg

    After you make the selection, file-> export-> Audio Mixdown (Ctrl-Shift-Alt-M).  In the dialog box:

    Mix options

    Source: click on the radio button of the track and ' all titles and master (separate files) from the context menu.»

    Range: choose "Selected" from the context menu.

    If you want to see the exported tracks to change immediately, check the box "insert Mixdown into:" and select "Edit View" from the context menu.

  • Question about sending e-mail to multiple recipients

    Hi all

    I'm creating a workflow that will send a notification by email each time a new campaign is created. I learned that R16 is able to send emails to multiple recipients, the only concern I have is that I can't find everything will have on how to do it. It is indicated in the Guide of Preview R16 administrator you can select "specific"E-mail address ", enter several e-mail addresses directly, tried to enter several e-mail addresses separated by comma - [email protected], [email protected], [email protected] for example, but it does not work and invites me to enter a valid email address. Could someone guide me on how to enter several e-mail addresses when you select 'Specific E-mail address' or how to do it in the expression builder to set the expression that defines the list of emails. I know that by using addresses group e-mail can be used as an alternative to this requirement, but I hope that their way to proceed with workflows.

    Thank you
    Wayne

    Wayne,

    Outlook uses one; to divide email addresses have you tried?

    see you soon
    Alex

Maybe you are looking for

  • Hasshrunk screen 1.5 inch - Satellite L500D

    I installed a purchased version of Windows 7 (not knowing I could get it for free here! grrr) and then installed all the drivers listed on this site. The usable screen has been reduced so that of a dash black about 1.5 inches wide down to the right a

  • Server does not recognize my user name on outgoing emails

    On my iPhone 4 my server does not recognize my email (Telstra) address on outgoing emails, but recognizes the incoming emails. What happened all of a sudden no reason apparent. I have two other email addresses on the phone and they work fine. One is

  • Could not complete the recovery of the system

    original title: Please HELP! I just started to run a system on my HP PC recovery, but if it is stopped at halfway.  I erase all my personal & data files from my computer to run a system restore? Help, please! I just started to run a system on my HP P

  • Connection network

    Dear Sir I made a request of blackberry news I read the http Web service data the problem is when I implement the application on the device, it can access network wifi jet only I need to access data service of bb as facebook app Can you help me

  • R60 hard drive interface

    Hello I would like to buy Solid State Drive and Ultrabay Slim adapter for my ThinkPad R60 (9456-HTG) then install SSD as internal hard drive, while my original hard drive would be in housing ultrabay (internal SSD for the system and hard drive in the