Get Sender Email Address

API Type

Web Services

Description

Retrieves the sender email address of the AgilePoint Server.

Syntax

public virtual string GetSenderEMailAddress()

Parameters

Name Description
None Not Applicable

Output

The email address that is configured as the sender email address on the AgilePoint Server.

Example

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'

Supported Versions

4.6 and higher