NOS.Registration.AutoRegistrationPlugin.LoadEmailTemplate C# (CSharp) Method

LoadEmailTemplate() private method

private LoadEmailTemplate ( bool failed ) : string
failed bool
return string
		string LoadEmailTemplate(bool failed)
		{
			string file = typeof(AutoRegistrationPlugin).FullName + ".SuccessMessage";

			if (failed)
			{
				file = typeof(AutoRegistrationPlugin).FullName + ".FailureMessage";
			}

			return _fileReader.Read(file);
		}