Got it. I knew it was my scripting somewhere causing the error but thought it was sendmail related. It's actually in the query string used. It's pulling email_address but it needs to be returned as customers_email_address
Use the sql patch tool to do this update:
Code:
UPDATE query_builder set query_string = 'SELECT email_address as customers_email_address FROM TABLE_SUBSCRIBERS WHERE email_format != ''NONE'' and confirmed = 1 and (customers_id IS NULL or customers_id = 0) order by email_address'
WHERE query_string = 'SELECT email_address FROM TABLE_SUBSCRIBERS WHERE email_format != ''NONE'' and confirmed = 1 and (customers_id IS NULL or customers_id = 0) order by email_address';
Be sure to add your dbprefix if needed.
Or use phpMyAdmin to update it.
I'll fix it in the release.
-Ng_
Bookmarks