Smartsheet.Api.Internal.RowResourcesImpl.SendRow C# (CSharp) Method

SendRow() private method

private SendRow ( long id, RowEmail email ) : void
id long
email Smartsheet.Api.Models.RowEmail
return void
        public virtual void SendRow(long id, RowEmail email)
        {
            throw new NotSupportedException();
        }

Usage Example

Example #1
0
        public virtual void TestSendRow()
        {
            server.setResponseBody("../../../TestSDK/resources/sendRow.json");

            RowEmail       email = new RowEmail();
            IList <string> to    = new List <string>();

            to.Add("*****@*****.**");
            email.To                 = to;
            email.Message            = "Test Message";
            email.Subject            = "Test Subject";
            email.IncludeAttachments = true;
            email.IncludeDiscussions = true;
            email.CCMe               = true;
            rowResourcesImpl.SendRow(1234L, email);
        }