how to send a clickable link to gmail message body and google plus message while sharing in iOS

1.1k Views Asked by At

I want to send a clickable link to gmail message body and google plus message while sharing in iOS.I have tried many ways with HTML.But end up with issue

Now I m using below string to mail message body:

enter image description here

I m getting the output as shown in picture but link in mail is not clickable.

I am setting the message body as:

[self.globalMailComposer setMessageBody:message isHTML:YES];

Can any please let me know where am I going wrong

thanks in advance

1

There are 1 best solutions below

3
On BEST ANSWER

Just replace your link with href

<a href='your link should be here'>Open This</a>

For example :

NSString *link = [NSString stringWithFormat:@"http://www.google.com"];
[controller setMessageBody:[NSString stringWithFormat:@"<a href=%@>%@</a>",link,@"Google"] isHTML:YES];