Versions Compared

Key

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

...

Table of Contents
stylenone

Preconditions

  • Defined templates for all the supported notification types on Meta profile.

  • Valid credentials for Namirial WhatsApp Gateway.

  • Valid FileHoster configuration in _globalXML

  • Enable WhatsApp feature flag in eSignAnyWhere (AllowWhatsAppNotification) and optionally allow WhatsApp for bulk if required by enabling (BulkEnvelopesWithWhatsAppNotifications).

Limitations

Max character length for the header: 60

Max character length for the body: 1024

Max character length for the button label: 25

Max character length for the button link (base url): 2000

Configuration

Global.xml

Code Block
<notificationPlugin customPluginId="whatsapp" isDefault="0">
			<enabled values="0;1">1</enabled>
			<assembly>COMPLETE_PATH_TO_namirial.Plugin.Notification.WhatsApp.dll</assembly>
			<type>namirial.Plugin.Notification.WhatsApp.WhatsApp</type>
			<pluginConfiguration>
				<NetworkConfiguration>
					<NamirialWhatsappGatewayBaseUrl>LINK_TO_NAMIRIAL_WHATSAPP_GATEWAY</NamirialWhatsappGatewayBaseUrl>
				</NetworkConfiguration>
				<LocalizationsDirectory>DIRECTORY_PATH_OF_XLIFF_FILES</LocalizationsDirectory>
			</pluginConfiguration>
</notificationPlugin>

...

Ordered list of parameters to be replaced in the template’s body. Parameters should be added in the mapping JSON between two '#' marks similar to how they appear in eSignAnyWhere for other notification types. (e.g. #FirstName#).

How to format text

Format

Description

Example

Italic

To italicize your message, place an underscore on both sides of the text

Code Block
_text_

Bold

To bold your message, place an asterisk on both sides of the text

Code Block
*text*

Strikethrough

To strikethrough your message, place a tilde on both sides of the text

Code Block
~text~

Monospace

To monospace your message, place three backticks on both sides of the text

Code Block
```text```

Bulleted list

To add a bulleted list to your message, place an asterisk or hyphen and a space before each word or sentence:

Code Block
- text
- text

Quote

 

To add a quote to your message, place an angle bracket and space before the text

Code Block
> text

Inline code

To add inline code to your message, place a backtick on both sides of the message

Code Block
`text`