FilepublishUploadRecipientBCC

Version: - string  

Summary

Returns the e-mail address of the notification mail blind carbon copy recipient.

Settings

The value is based on the Recipient BCC input field in the Upload section for the paragraph module.

(Page > Paragraph > Module tab > Upload panel > Recipient BCC)

Remarks

An input field with the name RecipientBCC must be defined in the form if the mail should be sent to the blind carbon copy recipient.

Examples

Outputting the template tag

@GetString("FilepublishUploadRecipientBCC")
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@FilepublishUploadRecipientBCC-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if string has a value

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