You need to rewrite create_export_query() in your module bean file.
Especially you need to construct resulting query so that it get email address from related account.
So, say, your module is related with Accounts by field account_id.
then this SQL will return email address from related account:
PHP Code:
SELECT ea.email_address FROM your_module_table ymt LEFT JOIN email_addr_bean_rel eabr ON ymt.account_id = eabr.bean_id AND eabr.bean_module='Accounts' LEFT JOIN email_addresses ea ON eabr.email_address_id = ea.id WHERE eabr.deleted = '0' AND eabr.primary_address='1'
Bookmarks