Forum:FirstAnswer.AuthorEMail
Version: - stringSummary
Returns email address of author the first answer.
Settings
The value is based on the Email field for the forum message.
Examples
Outputting the template tag
@GetString("Forum:FirstAnswer.AuthorEMail")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Forum:FirstAnswer.AuthorEMail"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Forum:FirstAnswer.AuthorEMail");
}
Outputting the template tag
<!--@Forum:FirstAnswer.AuthorEMail-->
Check if string has a value
<!--@If Defined(@Forum:FirstAnswer.AuthorEMail)-->
Let's output this tag here: <strong><!--@Forum:FirstAnswer.AuthorEMail--></strong>
<!--@EndIf(@Forum:FirstAnswer.AuthorEMail)-->