Gets all custom from addresses which can be used in a campaign
This method returns a list of all of your custom from addresses in your account, which can be used in a campaign.
SOAP action: http://apiconnector.com/v2/ApiService/GetCustomFromAddresses
Input and output parameters
The input and output parameters for this method are:
Input parameters
- Select - optional; integer
- Skip - optional; integer
Output parameters
- GetCustomFromAddressesResult - array of CampaignFromAddress
- CampaignFromAddress
- Id - integer
- Email - string
Example
using (var client = new ApiServiceClient())
{
client.ClientCredentials.UserName.UserName = "username";
client.ClientCredentials.UserName.Password = "password";
var select = 1000;
var skip = 0;
var customFromAddresses = client.GetCustomFromAddresses(select, skip);
}