private string BuildClosingContents(string legalBrand, string legalPhone,
string legalURL, string transText, string instructText, MyMail.Setting emailConfig)
{
StringBuilder sbHTML = new StringBuilder();
sbHTML.AppendLine(\"
if (emailConfig.Mode == \"Q\")
{
sbHTML.AppendLine(\"Please call me on \" + legalPhone + \" and we will arrange \");
sbHTML.AppendLine(\"everything for you. Please have your ticket details to hand \");
sbHTML.AppendLine(\"and your \" + instructText + \" will be required. In the meantime if you have any questions \");
sbHTML.AppendLine(\"please do not hesitate to call me.\");
sbHTML.AppendLine(\"
\");
}
else
{
sbHTML.AppendLine(\"If you have any queries relating to your quote \" + transText + \" please do not hesitate \");
sbHTML.AppendLine(\"to contact your conveyancer or me.\");
sbHTML.AppendLine(\"
\");
}
// Signature + branding
sbHTML.AppendLine(\"Yours sincerely\");
sbHTML.AppendLine(\"
\");
sbHTML.AppendLine(\"
\");
//sbHTML.AppendLine(legalBrand + \" Services
\");
sbHTML.AppendLine(\"
// Return the closing content
return sbHTML.ToString();
}