ProductWorkflowStateChanged:EmailNotification.UserName

Version: - string  

Summary

Returns user name of notified user.

Settings

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

Examples

Outputting the template tag

@GetString("ProductWorkflowStateChanged:EmailNotification.UserName")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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