Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleHow to use a sender email account from my website.?

From the New EviMail screen. The FROM section appears first, from which you can now configure the sender. 

In the "Email to use as sender" field, the user may select any of the email addresses configured. 

Image RemovedImage Added

From the New EviSign screen. The FROM section appears first, from which you can now configure the sender. 

In the "Email to use as sender" field, the user may select any of the email addresses configured. 

Image Added


Expand
titleHow to use a sender email account from API.?

In the call to EviMailSubmit a new text parameter FROM is added, this parameter is optional, if not specified the default email account will be used.


From (text) Opcional : E-mail address with which the FROM of the EviMail e-mail will be configured. The submit will validate that the address is configured in the sending user's account and that the domain is verified. 

Code Block
languagetext
titleAPI
POST /api/EviMail/Submit HTTP/1.1
Host: app.evicertia.com
Authorization: Basic xxxxx9jZWJlcg==
Content-Type: application/json 
 
{
    "LookupKey": "234234",
    "Subject": "this is the subject of the email",
    "Body": "This is the Body of the email",
    "From":"user01@newcompany.com",
    "Recipient": {
        "LegalName": "LegalName",
        "EmailAddress": "recipient@testmail.com"
    },
    "Options": {
        "AffidavitKinds": [
            "DeliveryResult"
        ],
        "CertificationLevel": "Advanced",
        "TimeToLive": 365,
        "HideBanners": true,
        "NotaryRetentionPeriod": 0,
        "OnlineRetentionPeriod": 1
    }
}

In the call to EviSignSubmit a new text parameter FROM is added, this parameter is optional, if not specified the default email account will be used.

Code Block
languagetext
titleAPI
POST /api/EviSign/Submit HTTP/1.1
Host: app.evicertia.com
Authorization: Basic xxxxxZWJlcdsssg==
Content-Type: application/json 
 
{
"subject":"EviSign Basic",
"issuer":"Demo evisign basic",
"From": "custom from <custom-from@mydomain.com>",
"signingParties":[
{
	"name":"Recipient Name",
	"legalName":"123456789A",
	"address":"recipient+des@namirial.com",
	"signingMethod":"WebClick",
    "AllowOverride" : false,
	"SigningOrder": "1",
}],
"options":
{
    "AffidavitLanguage":"es",
    "AffidavitKinds":["Submitted","SignatureRequestResult","Main"]
},
"document":"{DocumentBase64}"}
 


...