Text file over 200 external email addresses to add to outlook client - Can I import these email addresses to a Group Contact in outlook

Can i import from a text file (text file only has smtp address) over 200 external email addresses to 2010 outlook client - specifically group contact. I did not see an import button on outlook client.  It would be very convenient if users can manipulate
a text file which has all their external email addresses import these addresses to one group contact (mailing list)

Hello Christopher,
Please follow :-
Step 1
Open the text file in a text editor, such as Notepad. Each address should reside on a separate line or be separated by a semicolon. You can include multiple fields, such as names and addresses, by separating the fields by a space or tab.
Step 2
Press "Ctrl-A" to select all contacts on the list and then "Ctrl-C" to copy them.
Step 3
Click "New Items" from the main Outlook window, "More Items" and then "Contact Group."
Step 4
Click "Add Members" and then "From Address Book."
Step 5
Click the "Members" field, press "Ctrl-V" to paste the list of emails and click "OK."
Step 6
Click the "Name" field and type a name for the group.
Step 7
Click "Save & Close" to save your changes.
Step 8
Click "New Email" and type the name of the group in the "To" field. You can then compose and send email as usual.

Similar Messages

  • How to send a text file over a LAN?

    Hi:
    I am working on a program (web app using a servlet), that produces a text file with Key / Value pairs ex) NAME
    joe
    CITY
    los angeles
    I want to send the text file over an intranet (LAN) to another pc and store it in the C:\temp directory of the receiving computer.
    Is it best to use the Networking package? Any idea on tutorials or code samples to help assist me? (I posted on Servlet Technology forum; nobody answered though...thanks for any thoughts.

    one way cud be that u write a program to open a port on the computer u want to store and make that program save on the required directory. then u can send a simple file in byte format over it. but doing this only wud b unsafe as others wud also hav the access. wat u cud do to prevent is to put some kind of password so that first u authenticate to server b4 u pass on the file.
    bye
    jods

  • Downloading Text file over http

    Hi,
    I am trying to display some plain text files over http to the client using a web browser. Everything works fine till the time the file size is small, but for the files of over 1MB the frontend just dies. Probably the display happens only after the complete transfer of the file.
    Does any one have the solution by which the text files can also be downloaded similar to the html files i.e. incrementaly. I have the code of transferring the html file over http as it happens in the explorer. But the same does not seem to work on the plain text files.
    Please help
    Sachin

    I do not have any Remote server written for this. What i am doing is, the directory in which the files are stored is exposed as a virtual directory through a web server(Apache) and then from client i am just placing a http request to open this file.
    So what i can do under this situations to handle the large files.

  • Airport Extreme is allowing access to screen sharing, file sharing from external IP addresses (some from China, Canada etc)

    How to get control over the ports/port forwarding etc in Airport Extreme?
    How to make AE drop packets to certain ports from external ports.  Or create whitelist/blacklists?
    I figured out where the MAC filtering is!  (It is inside the Timed Access Control).  I wish it had a list of connected device and allowed me to select, name and add them.
    I am getting requests from Chinese IP to the screen sharing ports forwarded to my iMac.  Had requests to other ports as well.  There was one IP address from CANADA too.
    I want to open file sharing for local use only.

    Why is Airport Extreme forwarding requests for screen sharing from external ip addresses to my imac?  I don't have a public address, nor use dynamic dns service, and I have removed the server app (at least I think I have, but Apple Store doesn't think so).

  • Error in Text file while sending in email

    Dear Friends,
    I am sending data from Internal Table in Text file via email from ABAP program . But the data format is coming incoreect .
    For E.g. if the data is 'morning' the text file is generating data as ' m o r n i n g '. It is placing blanks between two letters .
    Please suggest me a solution .
    The Function code is as follows
    FORM send_file_as_email_attachment tables pit_message
                                              pit_attach
                                        using p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription
                                              p_sender_address
                                              p_sender_addres_type
                                     changing p_error
                                              p_reciever.
    DATA: ld_error    TYPE sy-subrc,
            ld_reciever TYPE sy-subrc,
            ld_mtitle LIKE sodocchgi1-obj_descr,
            ld_email LIKE  somlreci1-receiver,
            ld_format TYPE  so_obj_tp ,
            ld_attdescription TYPE  so_obj_nam ,
            ld_attfilename TYPE  so_obj_des ,
            ld_sender_address LIKE  soextreci1-receiver,
            ld_sender_address_type LIKE  soextreci1-adr_typ,
            ld_receiver LIKE  sy-subrc.
      ld_email   = p_email.
      ld_mtitle = p_mtitle.
      ld_format              = p_format.
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename.
      ld_sender_address      = p_sender_address.
      ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
      w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = 'SAPRPT'.
      w_doc_data-obj_descr = ld_mtitle .
      w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR w_doc_data.
      READ TABLE it_attach INDEX w_cnt.
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
      w_doc_data-obj_langu  = sy-langu.
      w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = ld_mtitle.
      w_doc_data-sensitivty = 'F'.
      CLEAR t_attachment.
      REFRESH t_attachment.
      t_attachment[] = pit_attach[].
    Describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE it_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type   =  ld_format.
      t_packing_list-obj_descr  =  ld_attdescription.
      t_packing_list-obj_name   =  ld_attfilename.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      APPEND t_packing_list.
    Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
      t_receivers-receiver = ld_email.
      t_receivers-rec_type = 'U'.
      t_receivers-com_type = 'INT'.
      t_receivers-notif_del = 'X'.
      t_receivers-notif_ndel = 'X'.
      APPEND t_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = w_doc_data
                put_in_outbox              = 'X'
                sender_address             = ld_sender_address
                sender_address_type        = ld_sender_address_type
                commit_work                = 'X'
           IMPORTING
                sent_to_all                = w_sent_all
           TABLES
                packing_list               = t_packing_list
                contents_bin               = t_attachment
                contents_txt               = it_message
                receivers                  = t_receivers
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Populate zerror return code
      ld_error = sy-subrc.
    Populate zreceiver return code
      LOOP AT t_receivers.
        ld_receiver = t_receivers-retrn_code.
      ENDLOOP.
    Regards
    Nilesh

    Hi,
    Please check this links will help you.
    Error in SOST transaction for Mail Triggered from SAP
    Re: need help in implementing a note

  • Utility to send text file over GPIB, one line at a time?

    We are developing instrumentation that receives data and commmands over GPIB as plain text, and returns them as well. I'd like to create GPIB "batch" files and send them over the bus, one line at a time, so I can debug the instruments' behavior. I'd also like to be able to read back responses, one line at a time.
    Is there such a utility? I've got our programmer working on something like this, but I'd hate to have him re-invent an existing wheel.
    Thanks!

    Apart from NI-SPY, I have not heard of such a utility. This may be simple to implement using proper termination. If the instrument is capable of sending line feeds or carriage return, you should be able to easily create a document. Also, using IBWRTF, you could write the ASCII file (containing the termination characters) to the bus. Depending on how you have your timeouts specified, this may be ideal.
    Alternately, if you read a static amount of data, you could IBRD chunks of data. the result may need editing for broken words at the end of a line but would achieve such a result.
    Ryan Mosley
    National Instruments, Applications Engineer
    http://www.ni.com/exchange

  • Zip a text file and send as email attachment

    Hi,
      I have a requirement to zip a text file and send it as an email attacment. I saw many posts with similar discussion on the forum but none gave me a very clear answer. Have anyone done this? If so please help.
    Regards,
    Hari.

    Hi Durairaj,
    I am working in ECC 6.0 and all ZIP classes are available in my system. I am converting the ABAP spool to PDF. My PDF is too long (57MB) that i need to convert it to ZIP  before i send it as a mail attachment. How do i do this?
    Thanks,
    RS

  • Mac partition corrupted, how to copy files over to external...

    I have a circa 2008 black macbook running OSX 10.6.4 and running bootcamp 3.1 with windows 7 and somehow my mac partition is corrupted beyond repair (according to disk utility in snow leopard install disk). Ican still boot into windows 7 and I can still access my files from the mac partition while in windows so my questions are:
    1. can I copy all my files to an external drive via windows (I tried just drag and drop but states I need certain permissions to do so). If so, how do I change permissions on the files or elevate my copying status so the alerts go away?
    2. If i can copy my files to an external, what files, if any, should I not copy over as to prevent the corrupted files from coming back up?
    3. If I wipe my mac partition and reinstall OSX, will there be any issues running boot camp? (will my windows 7 still boot)
    3. if there are no issues with the first three questions (assuming they are answered in my favor) can I copy the files back to my newly installed OSX partition without any issues?
    Basically I need to know how I can save my files from being deleted when I reinstall OSX (and no I do not have time machine set up)

    Set up a Mac OS X volume on your external drive and boot from there.
    Maybe you need Alsoft Disk Warrior (MacIntouch: Hard Drives lately)
    Install OS X - shrink a partition so you have 20-30GB.
    Erasing the HFS+ should be safe.
    Use SuperDuper to clone OS X in the future, along with using TimeMachine (different drives or partitions) which are bootable OS X. Or Carbon Copy Cloner.
    OS X DVD Disk Utility: Restore can copy a partition to external, and attempt repair of your OS X partition.

  • Strange behaviour sending a text file over sockets

    Hi !
    Im not exactly new to Java. I discovered this behaviour when explaining to a junior.
    I have a simple Server-Client architecture to send a text file. The server sends strings to client. The client checks for the string to become null, and never terminates !
    Server.java
    ServerSocket ss = new ServerSocket(25780);
    Socket s = ss.accept();
    PrintStream ps = new PrintStream(s.getOutputStream());
    BufferedReader br = new BufferedReader(new InputStreamReader(s.getInputStream()));
    BufferedReader fis = new BufferedReader(
                   new InputStreamReader(
                        new FileInputStream(filename)));
    while((read = fis.readLine()) != null){
         ps.println(read);
    client.java
    Socket s = new Socket(IP,port);
    PrintStream ps = new PrintStream(s.getOutputStream());
    BufferedReader br = new BufferedReader(new InputStreamReader(s.getInputStream()));
    String read = new String();_
    *while((read = br.readLine())  != null){*_
    System.out.println(read);_
    Can you tell me what mistake I'm making?

    Thank you so much for the reply !
    All blocks are within try-catch. I didn't post the whole code since you would find it inconvenient !
    I tried flushing the stream ! Still doesnt work !
    I guess it might help to post the entire source:
    CLIENT.JAVA
        public static void main(String[] args) {
         try{
             System.out.println("Client");
             int port  = 25780;
             String IP = new String("127.0.0.1");
             Socket s = new Socket(IP,port);
             PrintStream ps = new PrintStream(s.getOutputStream());
             BufferedReader br = new BufferedReader(new InputStreamReader(s.getInputStream()));
             String command = new String();
             String filename_to_recv = "from_ser.txt";
             command = "GET "+filename_to_recv;
             ps.println(command);
             String received = new String();
             String read;
             while((read = br.readLine()) != null){
              System.out.println(read);
             String filename_to_send = "from_cli.txt";
             System.out.println("recd data from server");
             command = "PUT "+filename_to_send;
             ps.println(command);
             BufferedReader filereader = new BufferedReader(
                                 new InputStreamReader(
                                  new FileInputStream(filename_to_send)));
             String to_send = new String();
             while((to_send = filereader.readLine()) != null){
              ps.println(to_send);
             try{
               Thread.sleep(2000);
             } catch(Exception e){
              System.out.println(""+e);
              e.printStackTrace();
         } catch(Exception e){
             System.out.println(""+e);
             e.printStackTrace();
    SERVER.JAVA
       public static void main(String[] args) {
         try{
             System.out.println("Server");
             ServerSocket ss = new ServerSocket(25780);
             Socket s = ss.accept();
             PrintStream ps = new PrintStream(s.getOutputStream());
             BufferedReader br = new BufferedReader(new InputStreamReader(s.getInputStream()));
             String command = br.readLine();
             String filename = command.substring(command.indexOf(' ')+1);
             File f = new File(filename);
             BufferedReader fis = new BufferedReader(
                            new InputStreamReader(
                             new FileInputStream(filename)));
             String read;
             while((read = fis.readLine()) != null){
              ps.println(read);
             ps.flush();
             System.out.println("waiting for client data");
             command = br.readLine();
             while((read = br.readLine())  != null){
              System.out.println(read);
         } catch(Exception e){
             System.out.println(""+e);
             e.printStackTrace();
        }

  • How to zip a text file and send as email attachment in SAP version 4.6c?

    Hi Guru,
    How to zip a text file in SAP version 4.6c which doesn't have class CL_ABAP_ZIP?
    Please help.
    Thanks & Regards,
    Ari

    Hi,
    Try this link
    [http://sap.ittoolbox.com/groups/technical-functional/sap-dev/sapr3dev-zip-file-from-sap-1707099?cv=expanded]
    Cheers,
    Surinder

  • I can't download files over 200 mb. What's wrong?

    Every time I try to download a file over 200mb it looks like it's downloading but when it has loaded 100% it doesn't finish so it doesn't get saved. It's not a space problem and it has always worked before. (It's not the browser either, I have tried it in firefox too).
    This is how it looks..
    If anybody knows what could be wrong and how to fix it, please help. Much appreciated.

    A .rar extension requires a utility to open.
    RAR Expander for Mac - Free software downloads and software reviews - CNET Download.com
    And check Safari > Preferences - General
    Make sure:  Open "safe" files after downloading is selected.
    If it still won't open, go to ~/Library/Safari
    Move the Downloads.plist file from the Safari folder to the Trash.
    Quit then relaunch Safari ...  try again.

  • I'm trying to delete files from and external disk and i get this: The operation can't be completed because an unexpected error occurred (error code -1407) can somebody help me? files do not get deleted..and the trash not emptied.. thanks

    I'm trying to delete files from an external disc and it doesn't let me couse this pops up:
    The operation can’t be completed because an unexpected error occurred (error code -1407)
    Please what does it mean? I also have a file in the trash of my mac book named something similar to: a'*.'*.'*'.*.
    and this cannot be deleted either..
    Please let me know what I can do.
    I also have many files in the external disc that I need so I cannot do a format..
    Thank you.
    Best Regards
    Karin

    Have you tried putting the file from your Drobo, onto your computer, then onto to the external hard drive?

  • Ever since the last update I don't have my old bookmarks, can't add new ones and can't import my HTML file. How do I fix this?

    ever since the last firefox update I don't have my old bookmarks, can't add new ones and can't add my HTML file of my bookmarks

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Is there an email app that permits group contacts for iPad/iPhone ?

    Is there an app for iPad/iPhone email that supports group contacts?

    iCloud: Create a group and add contacts to it
    http://support.apple.com/kb/PH2667
    eMail Groups - You can use a third party app that many users recommend.
    MailShot -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    Group Email -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
     Cheers, Tom

  • Output text as subject in External Email

    Hi Experts,
    I am trying to configure email output for shipment order.
    I have configured using nace, a new output type with medium 5, a zprogram and a smart form to generate and trigger the output. I was able to see the pdf in SOST transaction till I tried the following
    I took refernace of earlier mails and tried to add mail text and subject in the following way
    Went to config of my output type via V/30
    In the output detail, general data tab when I enter
    Program: sapmoigs
    Form routine: TEXT_SYMBOL_REPLACE
    I get the following warning message
    FORM routine TEXT_SYMBOL_REPLACE could not be found in program SAPMOIGS
    In the mail titles and text added : &OIK01-USERFLD3&  in Document title
    Now the pdf file in SOST does not open. throws error An error occurred while opening this document. The file is damaged and could not be repaired
    Can some one please suggest what can be done here ASAP.
    Thanks.

    I'm guessing that the file doesn't open because instead of a legitimate PDF file name you now have &OIK01-USERFLD3& in it (does the file show up with the Adobe icon?).
    The message you are getting is saying that you have entered the subroutine TEXT_SYMBOL_REPLACE that does not exist in program SAPMOIGS. If you go to SE38, enter SAPMOIGS and display Object List (there is a button on the toolbar), you'll see that on the left under 'Subroutines' there is no TEXT_SYMBOL_REPLACE. Either you need to use another program or create a custom program or maybe this funcationality just not available for shipments.
    Such routine, for example, exists in SAPMV60A if you want to see what it looks like.

Maybe you are looking for

  • Cannot combine few PDF on network drive

    Adobe Acrobat version 9 & X (Standard & Professional.) Cannot combine few PDF files on network drive. How to fix it ????

  • Importing Microstation SE DGN files into Adobe Illustrator CS4

    Hello, New to the forum and was hoping someone could help answer what is likely a very basic question: Can Adobe Illustrator CS4 import DGN files (containing point, line, text, shape, fills, cells and other complex elements) created in Microstation S

  • What should be the time that my iPad 1 should work with wifi before it requires to be recharged

    My battery life for wifi plus 3G has come down to 6 hours. My iPad is 9 months old and have used it moderately

  • Oracle Webcenter license

    Hi, Would like to know if I create system that is using one of the component in WebCenter. Do I need to purchase the whole Webcenter or I can use it for free? if need to purchase, what kind of license I need to purchase? Please advice. Thanks.

  • Servlet Failed Exception

    Hi, I am creating an application and I got the following error: <[ServletContext(id=14064895,name=ess_webapp,context-path=)] Servlet failed with Exception java.lang.NullPointerException at com.bea.wlw.netui.pageflow.PageFlowController.isNestable(Page