Choosing Fax Attachment during DocuSign Embedded Signing results in "cancel" event - tags

I am making API calls to create an embedded signing URL token that enables our end user to see a DocuSign document. One of the tabs on the document is a file attachment. The file attachment appears when the user clicks on the tab, giving the option to "Choose File" or "Send By Fax".
If the user clicks on "Send By Fax", he/she gets a message saying that a cover sheet will be printed at the end of the signing process. The user can click on "OK".
After all of the tabs are validated a "FINISH" button appears. The user clicks on "FINISH" and then a "Send Attachment By Fax" message appears. The user clicks on "Print Cover Page" which downloads the cover page PDF. The user prints the PDF.
Then the user clicks on DONE, to close the dialog. Control is returned to the ReturnURL along with the parameter "event=cancel".
According to the documentation (https://www.docusign.com/p/RESTAPIGuide/RESTAPIGuide.htm#REST%20API%20References/Post%20Recipient%20View.htm?Highlight=fax_pending), the event parameter should be "event=fax_pending".
Is there any way to get the correct event parameter ("event=fax_pending" rather than "event=cancel") when awaiting a fax? Without the correct parameter, when we parse the response parameters we are lead to believe that the user canceled when in fact he/she is just planning to fax the attachment.

I just tried to repro this and was not able to repro. It is possible that you are on the older signing experience and experiencing a bug.
My experience:
1) Send envelope from a template
2) Create recipient view with respective information
3) access recipient view
4) Click Continue
5) Click "Other Actions" dropdown
6) Select "Print & Sign"
7) Click "Fax"
8) Click Download to download the PDF
9) Click "Finish"
10) Get result: default URL &?event=fax_pending appended
My result was:
https://www....com/?event=fax_pending

I did post a support request to support#docusign.com, and after a few days got a definitive answer. This event result is a known bug. However support told me of a work-around that is satisfactory for our purposes, which is to suppress the fax option during the attachment process. Here are the steps I followed:
log in to demo.docusign.net (na2.docusign.net for production)
click on preferences (drop-down in upper right)
click on branding (at left)
click on edit (to edit the brand)
click on resources
under signing resource click on Download Master
That downloads an XML file.
Add the following element as the last sub-element of : false
Save the file.
Click on Upload Captive Resource and upload the changed file

Related

SendGrid: Is it possible to have a custom unsubscription page instead of using sendgrid

I know we can add a unsubscribed link in the template so when sending email there will be unsubscribed link at the bottom. It will show the preferences page. This page is created by sendgrid.
Is there a way to create our own unsubscribed screen instead? That way if someone modified their email in our system we can have control the unsubscription.
There are two things possible;
If you would like to use a custom URL for your unsubscribe link, from the Editor, navigate to Settings in the left-hand sidebar and select the Recipients dropdown menu. Under Unsubscribe Group, select Use Custom Link...
This will expand a new field where you can insert a URL for one of your own pages where recipients can manage their subscription preferences.
To place your Custom Unsubscribe link into your email, highlight any text within the body of your email and click the small link icon to specify a hyperlink. In the URL field that appears, enter the tag {{{unsubscribe}}}. Since you've specified your Custom Unsubscribe Link in the Settings panel, SendGrid will replace the Unsubscribe Tag with your custom URL.
https://docs.sendgrid.com/ui/sending-email/create-and-manage-unsubscribe-groups#using-a-custom-unsubscribe-link
List unsubscribe: email to get unsubscribe email, later you can do it manually or automatically
With CSV
Find the group you want to add recipients to and click the action menu.
Select Upload a CSV.
Drag the CSV you want to upload into the field, or click select a CSV file to upload and locate the file you want to upload from your files.
4.Click Upload CSV.
Manually
Find the group you want to add recipients to and click the action menu.
Select Manually Add.
Enter a recipient email address and then click Save.
https://docs.sendgrid.com/ui/sending-email/create-and-manage-unsubscribe-groups#add-recipients-to-an-unsubscribe-group

Why get "Permission Needed" everytime for my word plugin?

I am builing Word Plugin, I follow the tutorial to set up SSO by adding
<WebApplicationInfo>
<Id>{application GUID here}</Id>
<Resource>api://localhost:44355/{application_GUID here}</Resource>
<Scopes>
<Scope>openid</Scope>
<Scope>offline_access</Scope>
<Scope>profile</Scope>
<Scope>files.read.all</Scope>
</Scopes>
</WebApplicationInfo>
into my manifest file, however, everytime I refresh the page, when I click my plugin icon, it pops "Permission Needed" dialog box to ask above permissions, even I already gave the consent before, I thought it will remember my consent for the app. It shouldn't bother me again and again, this behavior happens before "Office.initialize" event, therefore not my code cause that.
My question, any way to let the "permission needed" only popup at first time, and after I gave the consent no matter how many times I refresh the page, when I click my plugin icon, it will not popup again?
Thanks
* More info appended *
I use my "Work or School" account login to office365, the URL is https://word.office.com
choose any word file, and click my plugin.
Then give the consent for app.
Then, If I reload the current Word page (by pressing Ctrl+F5) and click my plugin icon again, it repeat the above steps which I already give the consent.
That not make sense, or it only happens when I am developing, then it will be ok when published to Microsoft AppSource?

how to open mailbox itself thru html link (and not a new email)

How to enforce any link (html or anything else also) to open the mailbox, or least open the default email client where user can enter credentials.
Like for example, user clicks on "myEmails" link and it opens the user's inbox.
I have checked for "mailto" and it opens a new email, but I want to open the mailbox/inbox of the mail client.
Also, I have gone thru the following question, which is very relevant to what I want, but there are no right answers there.
How to create "go to mailbox" link in an html page

How to change the type of "open file" prompt in Internet Explorer

I have a .Net web application that allows the user the open a Word document which is a macro-based report. This has worked well for years until recently. And now we are starting to have some issues with the opening of the Word doc.
I've determined that I currently have some PCs that work well, and some that don't. Here are the main differences:
Working:
When clicking on the file link, the IE11 browser shows a prompt on the center of the screen asking the user to "open, save or cancel". Similar to this:
When the user selects "Open", the word file is opened with a yellow message saying "Enable content".
When the user clicks on "Enable content", the macro executes and the data is filled correctly.
Not working:
When clicking on the file link, the IE11 browser shows a prompt on the bottom of the screen asking the user to "open, save or cancel". Like this:
When the user selects "Open", the word file is opened with a yellow message saying "Enable edit".
When the user selects "Enable edit", there is a new yellow message saying "Enable content".
When the user clicks on "Enable content", the macro does not execute and/or has no data.
So my questions are, What's the difference in the IE11 setup and how do I change it?
Oh... company policy forces me to use IE, I have no other choice.

App Domain: is not a valid domain

any idea why get this error when I insert my site name in App Domain box ,when ntrying to setup app ? I've tried inserting other domains and I get rhe same error message.
Error
App Domain: http://wordpressblogplugins.com/ is not a valid domain.
i had the same problem. the error log is sketchy. this is the solution:
1st goto WEBSITE (below SELECT HOW YOUR APP CONNECTS...) and click
2nd in the text area, fill in your website http://www.yourdomain.info
3rd go back to APP DOMAIN (BASIC INFO) and type yourdomain.info
This absolutely works but I didn't quite understand the instructions, so I'm going to restate them for other neophytes like myself.
From the Facebook development page "Apps-YourAppName", click on Basic in the LEFT Nav.
There are 3 sections on this page: Basic Info, Cloud Services, and "Select how your app integrates with Facebook"
In the Select how your app integrates with Facebook section, select "Website"
Enter your fully qualified domain name in the Site URL dialog box. Example: http://www.mydomain.com OR http://mydomain.com (my site does not include the www so I didn't add it).
At the bottom of the page click the "Save Changes" button. You may receive a notice that it may take several minutes to blah blah blah....but you can continue with the next steps immediately.
Now, in the Basic Information section at the top of this screen, you can now add your App Domain. This should be formatted as mydomain.com. Do not add "http://" and do not add "/" at the end of the domain name.
NOTE: My site does not use the www, so I cannot confirm that it's required in Step #6. Try it both ways if you're unsure.
At the bottom of the page click the "Save Changes" button. You may receive a notice that it may take several minutes to blah blah blah....but you can continue with the next steps immediately.
At this point the error was NOT displayed as it was before.
Hope this helps!
You should not place URL scheme to the "App Domain" field (it's not a part of domain name), just the domain name like wordpressblogplugins.com