I have built a "teacher directory" of sorts, I have the data fill into 3 fields, name, position, and email.  All of the fields are UILabels.  How do I make it so that you can click on the email and it opens a blank email?
    @interface PersonDetailTableViewController ()
@end
@implementation PersonDetailTableViewController
@synthesize fnameLabel, snameLabel, emailLabel, person;
- (void)viewDidLoad
{
    [super viewDidLoad];
    [super viewDidLoad];
    self.fnameLabel.text = self.person.fname;
    self.snameLabel.text = self.person.sname;
    self.emailLabel.text = self.person.email;
}
(this is the table view controller where the data is being displayed)