Skip to content

Fixes #25 #26

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public IActionResult Create(string signerEmail, string signerName, string ccEmai
var accountId = RequestItemsService.Session.AccountId;

// Call the Examples API method to create and send an envelope via email
var envelopeId = SingingViaEmail.SendEnvelopeViaEmail(signerEmail, signerName, ccEmail, ccName, accessToken,
var envelopeId = SigningViaEmail.SendEnvelopeViaEmail(signerEmail, signerName, ccEmail, ccName, accessToken,
basePath, accountId, Config.docDocx, Config.docPdf, RequestItemsService.Status);

RequestItemsService.EnvelopeId = envelopeId;
Expand Down
2 changes: 1 addition & 1 deletion launcher-csharp/eSignature/Examples/SigningViaEmail.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace eSignature.Examples
{
public static class SingingViaEmail
public static class SigningViaEmail
{
/// <summary>
/// Creates an envelope that would include two documents and add a signer and cc recipients to be notified via email
Expand Down
4 changes: 2 additions & 2 deletions launcher-csharp/eSignature/Models/EmbeddedSigningModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public class EmbeddedSigningModel
{
public string SingerEmail { get; set; }
public string SingerName { get; set; }
public string SignerEmail { get; set; }
public string SignerName { get; set; }
}
}