-
Notifications
You must be signed in to change notification settings - Fork 69
Open
Description
In the AppConfigurations.cs file
- _domainForApiKey should be _fromName
[ public string FromName
{
get
{
if (!String.IsNullOrEmpty(_fromName))
return _fromName;
else
{
NameValueCollection appSettings =
ConfigurationManager.AppSettings;
# **_domainForApiKey** = appSettings["FromName"];
return _fromName;
}
}
set
{
_fromName = value;
}
}
]
- _domainForApiKey should be _fromEmail
public string FromEmail
{
get
{
if (!String.IsNullOrEmpty(_fromEmail))
return _fromEmail;
else
{
NameValueCollection appSettings =
ConfigurationManager.AppSettings;
_domainForApiKey = appSettings["FromEmail"];
return _fromEmail;
}
}
set
{
_fromEmail = value;
}
}
Metadata
Metadata
Assignees
Labels
No labels