select ct.cust_email
FROM Customers AS ct
JOIN Orders AS od ON od.cust_id = ct.cust_id
JOIN OrderItems AS ot ON ot.order_num = od.order_num
AND ot.prod_id = 'BR01'