Trying to import 200+ email addresses (only) into AB for distribution

I'm having trouble importing a list of email addresses into AB so that I can assign them to several groups for a newsletter distribution.
The addresses were sent to me in an email and for the first month i simply copied them all into the BCC field and shot off the newsletter. However, I'd like to introduce some organization into this by putting them all into AB (some people need to be added, others have emails changed).
I've tried several things:
1. Tried simply dragging them from the BCC field to AB - failed
2. Copied them all into a text file, made sure they were all separated by commas, saved as a .csv file, tried to import but that failed.
3. Tried importing them into Numbers and exporting as CSV but that failed as well.
4. Tried using http://homepage.mac.com/phrogz/CSV2vCard_v2.html, as has been suggested many times in this forum. Nothing ever appeared on the third tab.
5. Tried using the WhoPaste but that failed to import a batch of emails.
Of course selecting each address individually brings up the context menu and I certainly can import that way. But what the heck, this is a Mac and things ought to be easier, especially with so many addresses. Also, I am not an Applescripter but if anyone has already created a script that would help, I'd use that.

Answering my own question: got it resolved. I found a neat little utility called Abee (or Address Book Importer - http://www.sillybit.com/abee/) that did the trick. In working with this I learned that importing just a bunch of well-formed addresses with a comma separating them isn't enough. I decided to find and replace all comma-space combos and replace them with a paragraph character, making each entry on its own line. Naming it a .txt worked fine.
I hope my experience helps someone else in the future.

Similar Messages

  • Importing Email address book into Windows 8.1

    How do I import an email address book into my windows Outlook Express?

    Outlook Express is no longer available or supported by Microsoft. You can move your email and contacts to Outlook.com
    S.Sengupta, Windows Entertainment and Connected Home MVP

  • Trying to import Entourage Emails into Apple Mail

    I recently purchased a new Mac (Mountain Lion) and am trying to import the emails from my old Mac. I was previously using Entourage but I want to import them into Apple Mail.
    My old Mac will not restart but I have a copy on time machine. I think I have located the correct folder (and have copied it to my desktop):
    My User Name/Documents/Microsoft User Data/Office 2004 Identities/Main Identity/Database
    However, when I click on the Import Mailboxes option in Apple Mail, it only gives me the following options:
    Apple Mail, Netscape/Mozilla, Thunderbird, Eudora, Files in mbox format.
    Does anybody have any ideas on how to proceed?
    Many thanks
    Claire

    One method which is manual is as follows.
    With the Apple Address Book and Entourage address book launched and both positioned so each is partially visible, select the Address Book "All" Group.
    Select a contact in the Entourage address book and at the menu bar, go to Edit > Select All to select/highlight all Entourage contacts.
    Click and drag all selected/highlighted contacts to the Address Book Name column for the "All" Group and release.
    After selecting all Entourage contacts, you can also try Edit > Copy.
    Select the Name column for the Address Book "All" Group and at the Address Book menu bar, go to Edit and select Paste.

  • Importing mass email addresses into Address Book?

    My boss just got a new Blackberry and wants to sync her contacts. Unfortunately, she is not very good at making address book entries.
    Is there a way to quickly import any email address into Address Book? She doesn't need the everything edited with name, address, etc...since she knows most of these people by their email address more than their first/last names!

    They aren't located anywhere. She has all her email messages archived in Mail.app for the last 3 years so she'd like to extract them from there.
    Is there some kind of built-in email address list in Mail.app, because it seems to auto complete any email address she types despite it not being in the Apple address book app.

  • Creating a target group based on the BP email address only in CRM

    Hi there,
    I am currently trying to create a target group based on the business partner email address only.
    I have a list of over 1000 email addresses - these email addresses equate to a BP in our CRM system, however I do not have a list of the equivalent business partner numbers, all I have to work on are the email addresses.  With these 1000 BP email addresses I need to update the marketing attributes of each of these 1000 BP records in CRM.
    What I need is a method to find the 1000 BP numbers based on the email addresses and then use the marketing expert tool (tx. CRMD_MKT_TOOLS) to change the marketing attributes on all of the 1000 BPs.
    The issue I am having is how can I find the list of BP numbers just based on the BP email address, I tried creating an infoset based on table BUT000, BUT020 and ADR6 but I after creating attribute list & data source for this I am stuck on what to do next. In the attribute list the selection criteria does not allow me to import a file for the selection range.  I can only enter a value but I have 1000 email addresses and cannot possibly email them manually in the filter for the attribute list.   I also looked at imported a file into the target group but I do not have any BP numbers so this will not work.
    Does anyone know a method where I can create a target group based on the email addresses only without having to do any code?
    Any help would be most appreciated.
    Kind regard
    JoJo

    Hi JoJo ,
    The below report will return you BP GUID from emails that is stored in a single column .xls file and assign the BP to a target group.
    REPORT  zexcel.
    * G L O B A L D A T A D E C L A R A T I O N
    TYPE-POOLS : ole2.
    TYPES : BEGIN OF typ_xl_line,
    email TYPE ad_smtpadr,
    END OF typ_xl_line.
    TYPES : typ_xl_tab TYPE TABLE OF typ_xl_line.
    DATA : t_data TYPE typ_xl_tab,
           lt_bu_guid TYPE TABLE OF bu_partner_guid,
           ls_bu_guid TYPE  bu_partner_guid,
           lt_guids TYPE TABLE OF bapi1185_bp,
           ls_guids TYPE  bapi1185_bp,
           lt_return TYPE bapiret2_t.
    * S E L E C T I O N S C R E E N L A Y O U T
    PARAMETERS : p_xfile TYPE localfile,
                  p_tgguid TYPE bapi1185_key .
    * E V E N T - A T S E L E C T I O N S C R E E N
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_xfile.
       CALL FUNCTION 'WS_FILENAME_GET'
         IMPORTING
           filename         = p_xfile
         EXCEPTIONS
           inv_winsys       = 1
           no_batch         = 2
           selection_cancel = 3
           selection_error  = 4
           OTHERS           = 5.
       IF sy-subrc <> 0.
         CLEAR p_xfile.
       ENDIF.
    * E V E N T - S T A R T O F S E L E C T I O N
    START-OF-SELECTION.
    * Get data from Excel File
       PERFORM sub_import_from_excel USING p_xfile
       CHANGING t_data.
       SELECT but000~partner_guid FROM but000 INNER JOIN but020 ON
    but000~partner =
       but020~partner
         INNER JOIN adr6 ON but020~addrnumber = adr6~addrnumber INTO TABLE
    lt_bu_guid FOR ALL ENTRIES IN t_data WHERE adr6~smtp_addr =
    t_data-email.
       CLEAR: lt_guids,ls_guids.
       LOOP AT lt_bu_guid INTO ls_bu_guid.
         ls_guids-bupartnerguid = ls_bu_guid.
         APPEND ls_guids TO lt_guids.
       ENDLOOP.
       CALL FUNCTION 'BAPI_TARGETGROUP_ADD_BP'
         EXPORTING
           targetgroupguid = p_tgguid
         TABLES
           return          = lt_return
           businesspartner = lt_guids.
    *&      Form  SUB_IMPORT_FROM_EXCEL
    *       text
    *      -->U_FILE     text
    *      -->C_DATA     text
    FORM sub_import_from_excel USING u_file TYPE localfile
    CHANGING c_data TYPE typ_xl_tab.
       CONSTANTS : const_max_row TYPE sy-index VALUE '65536'.
       DATA : l_dummy TYPE typ_xl_line,
              cnt_cols TYPE i.
       DATA : h_excel TYPE ole2_object,
              h_wrkbk TYPE ole2_object,
              h_cell TYPE ole2_object.
       DATA : l_row TYPE sy-index,
              l_col TYPE sy-index,
              l_value TYPE string.
       FIELD-SYMBOLS : <fs_dummy> TYPE ANY.
    * Count the number of columns in the internal table.
       DO.
         ASSIGN COMPONENT sy-index OF STRUCTURE l_dummy TO <fs_dummy>.
         IF sy-subrc EQ 0.
           cnt_cols = sy-index.
         ELSE.
           EXIT.
         ENDIF.
       ENDDO.
    * Create Excel Application.
       CREATE OBJECT h_excel 'Excel.Application'.
       CHECK sy-subrc EQ 0.
    * Get the Workbook object.
       CALL METHOD OF h_excel 'Workbooks' = h_wrkbk.
       CHECK sy-subrc EQ 0.
    * Open the Workbook specified in the filepath.
       CALL METHOD OF h_wrkbk 'Open' EXPORTING #1 = u_file.
       CHECK sy-subrc EQ 0.
    * For all the rows - Max upto 65536.
       DO const_max_row TIMES.
         CLEAR l_dummy.
         l_row = l_row + 1.
    * For all columns in the Internal table.
         CLEAR l_col.
         DO cnt_cols TIMES.
           l_col = l_col + 1.
    * Get the corresponding Cell Object.
           CALL METHOD OF h_excel 'Cells' = h_cell
             EXPORTING #1 = l_row
             #2 = l_col.
           CHECK sy-subrc EQ 0.
    * Get the value of the Cell.
           CLEAR l_value.
           GET PROPERTY OF h_cell 'Value' = l_value.
           CHECK sy-subrc EQ 0.
    * Value Assigned ? pass to internal table.
           CHECK NOT l_value IS INITIAL.
           ASSIGN COMPONENT l_col OF STRUCTURE l_dummy TO <fs_dummy>.
           <fs_dummy> = l_value.
         ENDDO.
    * Check if we have the Work Area populated.
         IF NOT l_dummy IS INITIAL.
           APPEND l_dummy TO c_data.
         ELSE.
           EXIT.
         ENDIF.
       ENDDO.
    * Now Free all handles.
       FREE OBJECT h_cell.
       FREE OBJECT h_wrkbk.
       FREE OBJECT h_excel.
    ENDFORM. " SUB_IMPORT_FROM_EXCEL
    Just copy paste the code and run the report select any local xls file with emails and pass the target group guid.
    snap shot of excel file:
    Let me know if it was useful.

  • I'm trying to create a new ichat Acc because for some reason the old one is not working, so I go to Create an Apple ID and start creating a new apple ID, when I submit the Acc it tells me that my Email address is already verified for another Apple ID and

    I'm trying to create a new ichat Acc because for some reason the old one is not working, so I go to Create an Apple ID and start creating a new apple ID, when I submit the Acc it tells me that my Email address is already verified for another Apple ID and thats the only email address I have... What can I do?

    There is no way to consolidate iTunes accounts.
    Setting up an iPhone has never required creation of a new Apple ID.
    You've apparently purchased content with both Apple ID's.  Sign into the device with the correct Apple ID and sync the content.

  • Importing Netscape's address book into Apple's Address Book application

    I want to import my email Netscape email address book into Apple's Address Book application. So I open the Address Book application and select import from the pull down menu. That brings up three choices, vCards, LDIF and Text. I previously had saved my Netscape address book as a pdf file. So I selected, Text. A window appeared from which I was to select where I wanted to get the file from. I made selections until I got to where my pdf file was and selected it. But I got the following error message.
    The file you selected does not appear to be a valid comma separated values (csv) file nor a valid tab delimited file, please choose another file.
    So I tried again and this time I selected LDIF, but when the file in my Netscape Users Profile that would appear to be my address book came up, it was “greyed out” and I could not select it. The file had the name “abook.mab”. It is not an LDIF file. There are no LDIF files in my profile.
    So I tried selecting vCards, but I got the exact same results as above. The file that looks like it is my address book, is grayed out and cannot be selected.
    So I went into Netscape to see if I could export my address book into Apple’s Address Book. I chose export from the Netscape menu and a window opened asking me to select where I wanted to export the file to. But when I got to Apple’s Address Book application, it was greyed out and could not be selected. The same thing happened when I tried to select Apple’s Mail program.
    I have about three hundred email addresses in my Netscape address book. If these addresses have to be manually entered into Apple's Address Book, I will not make the switch to Apple's Mail program.

    Netscape's Address Book window does not have that option. The Export option is under the Tools menu, but does not give you any options in the Tools menu. Once you select Export, the Export Address Book window opens. This window does have a format option where you can select either LDIF, Comma Separated or Tab Delimited. But it doesn't matter which of those I select, Apple's Address Book and Mail applications are not available for selection.

  • Trying to set an email address

    I am using Oracle 9i and SQL*Plus on Windows XP.
    I am trying to set an email address in my object table using an object method.
    I have the following types:
    CREATE OR REPLACE TYPE student_type AS OBJECT
    (FirstName varchar2(15),
    LastName varchar2(15),
    Address address_type,
    Contact contact_type,
    DateOfBirth date,
    Nationality varchar2(15),
    AttendanceMode varchar2(15),
    StudentNo varchar2(15),
    Userid varchar(15),
    FeeStatus varchar2(25))
    create type contact_type as object
    (home_tel_no number(14),
    mobile number(14),
    email varchar2(25))
    and have created a method to set an email address:
    MEMBER FUNCTION setEmail (self IN OUT student_type, em varchar2) RETURN number,
    PRAGMA RESTRICT_REFERENCES (setEmail, WNPS, RNPS)
    along with all of the other necessary code which works OK.
    I have implemented it with the following code but am not sure if it is correct:
    MEMBER FUNCTION setEmail (SELF IN OUT student_type, em varchar2) RETURN NUMBER IS
    BEGIN
    SELF.CONTACT.EMAIL := em;
    RETURN 1;
    END;
    but when I try to run it, i get the following error:
    SQL> SELECT S.SETEMAIL('[email protected]') FROM STUDENT_TABLE S WHERE FIRSTNAME = 'Sammy';
    SELECT S.SETEMAIL('[email protected]') FROM STUDENT_TABLE S WHERE FIRSTNAME = 'Sammy'
    ERROR at line 1:
    ORA-06572: Function SETEMAIL has out arguments
    Any help with this would be great.
    James

    SELECT S.SETEMAIL('[email protected]') FROM
    STUDENT_TABLE S WHERE FIRSTNAME = 'Sammy'
    ERROR at line 1:ORA-06572: Function SETEMAIL has out arguments
    er...that'll be because your member function has an OUT parameter, self:
    MEMBER FUNCTION setEmail (self IN OUT student_type, em varchar2) RETURN number,(1) You need to reference all parameters in the function, so you need two arguments in your call - but...
    (2) we cannot use methods with OUT parameters in SELECT statements, because that's the law.
    Do you need to pass SELF into your method? If so you'll have to use PL/SQL to do this instead.
    Looking at your code again, I see you are actually using a SELECT statement to alter the data iin the database. This is not allowed at all. SELECT statements are, must be, read only.
    Cheers, APC

  • My original computer that has my itunes account on it no longer works.  I am trying to import my phones itunes settings into my new computer and it is not letting me and I don't want to loose all my photos and music, what do I do?

    My original computer that has my itunes account on it no longer works.  I am trying to import my phones itunes settings into my new computer and it is not letting me and I don't want to loose all my photos and music, what do I do?

    It does not magically appear in a new place.  It will only be where you put it.
    Copy everything from your old computer, or your backup copy of your old computer, to your new one.

  • Urgent! AD connector doesn't import Group email addresses!

    The AD connector does not synchronize the email addresses of Distribution groups. This is a huge error, because there are 80 groups and I cant set the email addresses one-by-one.
    Strange, but users get imported with correct email addresses, only Groups don't have the email address imported.
    Please help!

    OK Its solved. I created a new second connector, now it imports the email addresses. What can I say, this is not what I would expect from this product...

  • Hi Guys, i mistakenly synced my iphone and all my email contacts appears in my contacts list. its mixed up. can someone please assist me on how to delete the email address ONLY?

    hi Guys, i mistakenly synced my iphone and all my email contacts appears in my contacts list. its mixed up. can someone please assist me on how to delete the email address ONLY?

    Don't understand your problem... Contacts sync with a compatible address book or cloud service. Contact records can contain names, addresses, phone numbers, e-mail addresses, notes, or any combination of these. If you have records you don't want in your address book that you don't want in your contacts, then segregate them into groups in your address book and only sync the group(s) you want. If you don't want them there at all, then delete them.

  • HT201303 I tried to change my email address on the apple ID but now when I try to buy an app or film it still comes up with my old email address and won't accept  my password to buy anything. My old email address is no longer in use  and can not be access

    I tried to change my email address ID , but now when I try to buy an app or music it still shows my old email address  and won't accept my password which I did not change. What can I do as I can't download anything ?

    What id shows in Settings > iTunes & App Store ? If it's the old one then tap on it and log out of it and then log in with the updated version

  • I am trying to change the email address associated with my existing account to free up my university email address for use in obtaining Creative Cloud.

    I am trying to change the email address associated with my existing account to free up my university email address for use in obtaining Creative Cloud.  Every time I go to the account settings of my existing account (which currently uses my university email, as I set it up years ago and had no idea it'd eventually cause problems), I enter a different email to use for that account but I continuously receive an error message saying "account changes cannot be saved."  It makes me think that it's because the email isn't verified (funny, it actually is verified since it has been the alternate email on the old account for years), but when I click the "send verification email" nothing happens (that is, no email is sent to that other email address).
    Anyway, my university is now requiring that faculty create new accounts using our university email addresses in order to register/use Creative Cloud.  Am I able to delete my old account, or can anyone help me actually change the email address associated with my old account without getting a "changes can't be saved" error?

    This is an open forum, not Adobe support... you need Adobe support to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    or
    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html
    -email address https://forums.adobe.com/thread/1446019
    -http://helpx.adobe.com/x-productkb/global/didn-t-receive-expected-email.html

  • I am trying to import BPM Project.zip file into Oracle enterpriserepository

    I am trying to import BPM Project.zip file into Oracle enterpriserepository from admin tab.
    I am getting the following exception. please help if any one know the solution.
    Performing import...
    Import Failed: Error [100]: An unknown server-side error occurred. Please record stack trace (if available) and contact technical support.
    com.flashline.exception.LoggableException: trouble parsing file in import bundle: SampleWScall/activityGuide.agdl
         at com.flashline.cmee.openapi.service.subsystem.impexp.XMLTranslator.decode(XMLTranslator.java:157)
         at com.flashline.cmee.openapi.service.subsystem.impexp.ImportJob.doJob(ImportJob.java:74)
         at com.flashline.cmee.openapi.service.subsystem.impexp.AbstractJob.perform(AbstractJob.java:75)
         at com.flashline.cmee.openapi.service.subsystem.impexp.JobThread.run(JobThread.java:41)
    Audit results stored in:
    C:\Users\AVINAS~1.YEL\AppData\Local\Temp\import-4705112223687937017.log
    Audit for [Import job.] created on [2012-09-24 11:53:59 IST].
    2012-09-24 11:53:59 IST - Adding Import job with ID=[50403] to job queue.
    Thanks in Advance.

    Hi
    Why are you trying to import BPM zip file are you trying to configure the out of the box workflows?
    They are something that need to be deployed from the process admin on BPM.
    There would be the .exp file you would need as its BPM 10g that you would need to use.

  • I am trying to import cr2files from the camera into lightroom 5 and keep getting an error message saying Lightroom can not read the files and therefore will not import them.  Has anyone had a similar problem-.thanks

    I am trying to import cr2files from the camera into lightroom 5 and keep getting an error message saying Lightroom can not read the files and therefore will not import them.  Has anyone had a similar problem….thanks

    If you are having the same problem, i.e. a disk permission problem, open your favorite search engine and search on, "change disk permissions", and I think you'll find plenty of information on how to fix the problem. This is a Lightroom forum. Your problem is with your operating system. There is no sense in rewriting instructions that are already available if you do a simple search.

Maybe you are looking for

  • Alignment of embedded pictures in Mail

    I am trying to figure out how to have control over the alignment of photos that are attach/embedded into an email I send out. Aside from the issue of whether the photo is "attached" or "embedded"; when I look at the email, and choose to insert a phot

  • Dropped Frames During Capture

    FCE HD is dropping frames during capture when I'm taking video from my Canon Video camera and the three DVD players I've been using. Any suggestions or ideas? Here's my info: - Didn't work for either of these setups: - Canon to my iBook G4 via firewi

  • Allocation in ECC6.0 NewGL

    In NewGL, release ECC6.0, I'm trying to understand if I can define a Statistical Key Figure for more dimensions (standard or custom fileds) and how (Report Painter?)? Let me know. Thanks.

  • Sql:variable and XML query performance

    Can someone help with sql:variable() in xml queries?  It seems that when I attempt to reference variables with the sql:variable(...) function in an xpath function (exist or nodes) it comes up with a totally different query plan, possibly ignoring my

  • MIRO invoice verification problem

    Hi everyone! We have one service PO and one entrysheet in USD for 258.26 (local currency = ARS 2197.28). Later, vendor sent an invoice in ARS for 2197.79. User does the following: 1 - Creates the invoice using MIRO in ARS with reference to PO. 2 - Mo