Results 1 to 2 of 2

Thread: Export email addresses from leads including non-primary

  1. #1
    ranthony is offline Member
    Join Date
    Dec 2007
    Posts
    9

    Smile Export email addresses from leads including non-primary

    I'm trying to use the export feature for Leads. It's now exporting only the primary email address, but I would like to have all associated email addresses available. How can I go about changing that?

    I'm using Sugar 5.1.

    Thank you,
    Ryan

  2. #2
    ranthony is offline Member
    Join Date
    Dec 2007
    Posts
    9

    Default Re: Export email addresses from leads including non-primary

    Ok, so I made one solution work, I'd appreciate any others though.

    I changed some code in modules\Leads\Lead.php in the create_export_query function. I removed the requirement that email_addr_bean_rel.primary_address=1 in the LEFT JOIN. So from this:

    Code:
    //$query .=  ' LEFT JOIN  email_addr_bean_rel on leads.id = email_addr_bean_rel.bean_id and email_addr_bean_rel.bean_module=\'Leads\' and email_addr_bean_rel.deleted=0 and email_addr_bean_rel.primary_address=1 ';
    to this:

    Code:
    $query .=  ' LEFT JOIN  email_addr_bean_rel on leads.id = email_addr_bean_rel.bean_id and email_addr_bean_rel.bean_module=\'Leads\' and email_addr_bean_rel.deleted=0 ';
    Ryan

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Export as CSV including custom fields?
    By madmat in forum Help
    Replies: 1
    Last Post: 2010-07-22, 01:44 PM
  2. Replies: 5
    Last Post: 2008-08-18, 01:23 PM
  3. Help with primary addresses please
    By ThomasC140 in forum Help
    Replies: 1
    Last Post: 2008-07-02, 11:55 PM
  4. target/leads email addresses..
    By jheizhee in forum Help
    Replies: 1
    Last Post: 2008-05-15, 02:39 AM
  5. Replies: 8
    Last Post: 2007-07-17, 01:46 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •