select first_name, last_name, email from customer inner join rental
on customer.customer_id = rental.customer_id where customer.customer_id in
(select customer_id from rental where inventory_id in
(SELECT inventory_id from inventory where film_id =
(select film_id from film where title = 'FRONTIER CABIN')) )