Evo Voice

<back to all web services

SendTestEmail

Send a test email from the specified account

Requires Authentication
Requires any of the roles:SystemAdministrator, Manager, Customer
The following routes are available for this service:
POST/settings/test-email
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Voice.Api.Settings;

namespace Voice.Api.Settings
{
    public partial class EmailAccount
    {
        public virtual string Id { get; set; }
        public virtual string Server { get; set; }
        public virtual string UserName { get; set; }
        public virtual int Port { get; set; }
        public virtual string EmailAddress { get; set; }
        public virtual string DisplayName { get; set; }
        public virtual string Password { get; set; }
    }

    ///<summary>
    ///Send a test email from the specified account
    ///</summary>
    [Api(Description="Send a test email from the specified account")]
    public partial class SendTestEmail
        : IPost
    {
        ///<summary>
        ///The email account to send from
        ///</summary>
        [ApiMember(Description="The email account to send from")]
        public virtual EmailAccount Account { get; set; }

        ///<summary>
        ///The user to send to
        ///</summary>
        [ApiMember(Description="The user to send to")]
        public virtual string EmailAddress { get; set; }
    }

}

C# SendTestEmail DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /settings/test-email HTTP/1.1 
Host: evovoice.io 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"account":{"id":"String","server":"String","userName":"String","port":0,"emailAddress":"String","displayName":"String","password":"String"},"emailAddress":"String"}