Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I created content and attachd link to a content node but I would like to send that link to user in email form.
but that link is {LocalLink:1080}, I want to change that to http://Exmaplewebiste.com/contract.aspx
How should I do?
Thank you.
I use Umbraco 4.9.1 for Implement this website!
I used a little extension method to help with an issue similar to yours. The below should do the trick.
public static HtmlString ToHtml(this string str) { return string.IsNullOrWhiteSpace(str) ? new HtmlString(string.Empty) : new HtmlString(TemplateUtilities.ParseInternalLinks(str)); }
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
How to Get full url from tinyMCE
I created content and attachd link to a content node but I would like to send that link to user in email form.
but that link is {LocalLink:1080}, I want to change that to http://Exmaplewebiste.com/contract.aspx
How should I do?
Thank you.
I use Umbraco 4.9.1 for Implement this website!
I used a little extension method to help with an issue similar to yours. The below should do the trick.
is working on a reply...