I have an email message that is 317 characters in my custom button code, and when I press the button to test the code, I receive this error:
Illegal Request
You have sent us an Illegal URL or an improperly formatted request.
When I reduce the number of characters in my email message, the button functions, no errors. I was looking in DocuSign documentation and it indicates that there is a character limit for the email message of 2000 characters. Why can't I use this email message with 317 characters? Anyone run into this?
Related
I'm sorry I am not sure the proper wording to explain this issue.
I have constantly been receiving emails such as the one I attached (at the bottom). Altough I am able to block emails from "Order_Shipment", several email addresses remain sending messages to PennyV1#aol.com as well as PennyYA#aol.com, which is redirected to me. I could not find a way to block these two emails. I get several emails daily through them, and I would like it to stop.
Things I tried:
1 - Searched in the google settings, and couldn't find anywhere how to specifically block an email by typing the address.
2 - The three vertical dots on the left allows me to block the specific email from Order_Shipment, this does not solve the problem as the real problem is blokcing PennyV1 and PennyYA.
3 - Sent an email to PennyV1#aol.com as well as PennyYA#aol.com in the hope they would sent me an email back so I can block them. My message got bounced back saying these emails don't exist.
I do not know how my email entered this email grouplist
You could try blocking their domain:
Like clicking "Block Quora Digest" in my case.
Option two would be two create a filter: https://support.google.com/mail/answer/6579?hl=en#zippy=%2Ccreate-a-filter
I'm sending an envelope to the DocuSign API which includes the emailBlurb JSON property. I've entered several lines of text here and would like these to appear in the email that is sent to the signer with the same line breaks, however the line breaks are not being respected in the email that is received by the signer.
Here's an example of the emailBlurb JSON property:
"emailBlurb": "Please sign the Contract Agreement Renewal for 2021. \r\rIf you have any questions please call us on 1800 123 456 between 9am and 5pm Mon-Fri.\r\rThe Contract Team.\rAcme Pty Ltd",
"emailSubject": "Please Sign the Customer Agreement",
and here's a screenshot of the email that is received:
You can see that it appears as one long string of text instead of like this:
Is there something else I need to do to make the email respect the carriage returns here?
Using \r\n\ instead of \r\r resolved this for me.
I am using allauth's ResetPasswordForm for password reset process. This form's save method sends the password reset email. I customized the password reset template to use it in Turkish, so it includes some special characters. The email message itself is printed perfectly, displaying the special characters the right way. However, the subject line is printed as below for a subject I enter e.g. "öla".
"Subject: =?utf-8?b?W2V4YW1wbGUuY29tXSDDtmxh?="
If I give the subject "ola" without using the accent, there is no problem, it prints
"Subject: ola"
to the console. To stress again, this does not happen in the email body, which prints several special characters correctly. I only changed the allauth's template, and did not change anything in the form class.
Any idea how to fix this? Thanks.
Blue Prism: I'm trying to read an email(outlook), Which contains the information about the status of a task, name and a table with multiple headers. I should save the required information like name, status of the task in an Excel under the headers which were already written. It should all happen dynamically without spying the elements. Can anybody please elaborate the process?
You've got 2 options:
Use the MAPIEx object for a back-end connection to your Outlook profile's mailbox. (See also: MAPIEx installation guide)
v6.3 and later Use the bundled Blue Prism-provided MS Outlook VBO, which has the following actions:
Delete Email
Forward Email
Get Received Items Advanced
Get Received Items Basic
Get Received Items Expert
Get Sent Items Advanced
Get Sent Items Basic
Get Sent Items Expert
Mark Email As Read
Mark Email As Unread
Move Email to Inbox Sub Folder
Reply to Email
Reply All to Email
Save Attachment Attachments
Save Email
Save Email As File
The DocuSign SOAP API lists various limits on API fields, e.g. Username can be a maximum of 100 chars, Email can be a maximum of 100 chars. Does this mean that together, the "friendly name" and the email address can be 200 chars?
For Example, would this be okay (i.e. only an email):
ThisIsAReallyLongUserNameWhichWillBeAbout58CharactersLong#gmail.com ?
And this would NOT be okay:
ThisIsAReallyLongUserNameWhichWillBeAbout58CharactersLong [ThisIsAReallyLongUserNameWhichWillBeAbout58CharactersLong#gmail.com] ?
And what happens if those (or other) string limits are exceeded? Is an error thrown or is it just truncated? If an error, what kind of error?
Using the Visual Studio debugger, I modified input fields, and checked the results of the fields in the Envelope which are the the most important to our application (which uses the SOAP API):
Document Name: This gets truncated to 100 characters by the DocuSign System. No error is generated.
Recipients -> UserName: if this is greater than 100 characters, the DocuSign SOAP API throws an "Unspecified Error"
Recipients -> Email: This would be truncated to 100 characters by the DocuSign System ... and therefore the above sample would become something like this "ThisIsAReallyLongUserNameWhichWillBeAbout58CharactersLong [ThisIsAReallyLongUserNameWhichWillBeAbou". No error was generated, but it would fail if used as an email address.
Email Subject: This gets truncated to 100 characters by the DocuSign System. No error is generated.