Returns the auto responder info for the specified user.
A UserAutoResponseResult instance containing the results of the GetUserAutoResponseInfo action.
using System;
using svcUserAdmin;
class svcUserAdminGetUserAutoResponseInfo
{
static void Main()
{
svcUserAdmin admin = new svcUserAdmin();
UserAutoResponseResult responder = admin.GetUserAutoResponseInfo("admin@domain.net",
"alskdjfhtt",
"dlindt@domain.net");
if(responder.Result)
{
if(status.Enabled)
Console.WriteLine ("Subject line: {0}", responder.Subject);
else
Console.WriteLine ("Auto responder not enabled");
}else{
Console.WriteLine (responder.Message);
}
}
svcUserAdmin Class | svcUserAdmin Namespace