Upvote:1

Aprove answer
NSURL *url = [NSURL URLWithString:@"Your URL"];
SHKItem *item = [SHKItem URL:url title:@"Your title" contentType:SHKURLContentTypeUndefined];

NSArray *recipientArray = [NSArray arrayWithObjects:@"[email protected]",nil];
[item setMailToRecipients:recipientArray];

[SHKMail shareItem:item];

Credit Goes to: stackoverflow.com

Related question with same questions but different answers