so I have a UIScrollView with all of these buttons overlayed with images:
https://i.stack.imgur.com/NsOby.png
and I need it so that if you click on a teacher, like Mr Edmondson for maths, In another UIViewController, an email screen pops up and it needs to set the email recipient to edmondson@gmail.com.
Basically you click on whatever teacher, and it sets the email recipient to that teacher. My current code in the recipients & message body is:
let toRecipients = ["placeholder@gmail.com"]
mc.setMessageBody("blah blah blah blah")
How would I do this ?