select cust_email
from Customers
where cust_id
in (select cust_id from Orders od
inner join OrderItems odi
on od.order_num = odi.order_num
and odi.prod_id = 'BR01')