FilepublishUploadText

Version: - string  

Summary

Returns the body text of the notification mail.

Settings

The value is based on the Text textfield in the Upload section for the paragraph module.

(Page > Paragraph > Module tab > Upload panel > Text)

Remarks

An input field with the name Text must be defined in the form if the mail should have a body text.

Examples

Outputting the template tag

@GetString("FilepublishUploadText")
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if tag has a value

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

Assign tag to a value for later use

@{
string storedTag = GetString("FilepublishUploadText");
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Outputting the template tag

<!--@FilepublishUploadText-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if string has a value

<!--@If Defined(@FilepublishUploadText)-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX