| Methods / Administrative Service | |
Web Services
Retrieves the sender email address of the AgilePoint Server.
public virtual string GetSenderEMailAddress()
| Name | Description |
|---|---|
| None | Not Applicable |
The email address that is configured as the sender email address on the AgilePoint Server.
IWFAdminService svc = GetAdminService();
try
{
string senderEMailAddress = svc.GetSenderEMailAddress();
Console.WriteLine("Sender EMail Address = '{0}'",
senderEMailAddress);
}
catch (Exception ex)
{
Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex));
}
//This example produces the following results:
//Sender EMail Address = 'admin@your-domain.com'
4.6 and higher