ProductWorkflowStateChanged:EmailNotification.UserFullName

Version: - string  

Summary

Returns full name of notified user. 

Settings

Related to First/Last Name field of the user difined in User Management.

Examples

Outputting the template tag

@GetString("ProductWorkflowStateChanged:EmailNotification.UserFullName")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("ProductWorkflowStateChanged:EmailNotification.UserFullName"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("ProductWorkflowStateChanged:EmailNotification.UserFullName"); }

Outputting the template tag

<!--@ProductWorkflowStateChanged:EmailNotification.UserFullName-->

Check if string has a value

<!--@If Defined(@ProductWorkflowStateChanged:EmailNotification.UserFullName)--> Let's output this tag here: <strong><!--@ProductWorkflowStateChanged:EmailNotification.UserFullName--></strong> <!--@EndIf(@ProductWorkflowStateChanged:EmailNotification.UserFullName)-->