You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/channels/emails.rst
+6-2
Original file line number
Diff line number
Diff line change
@@ -276,15 +276,19 @@ For example:
276
276
Unsubscribing
277
277
*************
278
278
279
-
Mautic has a built in means of allowing a Contact to unsubscribe from Email communication. You can insert the tokens ``{unsubscribe_text}`` or ``{unsubscribe_url}`` into your Email to have the text or the URL show at your desired location. The unsubscribe text token inserts a sentence with a link instructing the Contact to click to unsubscribe.
279
+
Mautic has a built in means of allowing a Contact to unsubscribe from Email communication. You can insert various tokens into your Email to provide unsubscribe options at your desired location:
280
+
- ``{unsubscribe_text}``: Inserts a sentence with a link instructing the Contact to click to unsubscribe.
281
+
- ``{unsubscribe_url}``: Inserts the URL to the preferences center when it's activated, or to the unsubscribe page if not.
282
+
- ``{dnc_url}``: Inserts the URL to unsubscribe from all marketing messages when the preference center is activated.
280
283
281
284
The unsubscribe URL token inserts the URL into your custom written instructions.
282
285
283
286
For example:
284
287
285
288
.. code-block:: html
286
289
287
-
<ahref="{unsubscribe_url}"target="_blank">Want to unsubscribe?</a>
290
+
<ahref="{unsubscribe_url}"target="_blank">Manage your email preferences</a>
291
+
<ahref="{dnc_url}"target="_blank">Unsubscribe from all emails</a>
288
292
289
293
You can find the configuration of the unsubscribe text in the global settings.
Copy file name to clipboardexpand all lines: docs/components/forms.rst
+4-4
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ To add a new field to your Form:
105
105
106
106
- **Hidden** - This field won't be visible on the Form, but include default values, saved along with the Form submission, for reporting or internal tagging purposes.
107
107
108
-
- **List - Country** - This populates Mautic's default, non-editable country list. To use a custom list you should make use of the Select field type and manually enter the countries you would like to include.
108
+
- **Select: Country** - This populates Mautic's default, non-editable country list. To use a custom list you should make use of the Select field type and manually enter the countries you would like to include.
109
109
110
110
- **Page break** - This allows marketers to break up the Form into multiple parts or field groupings.
111
111
@@ -117,13 +117,13 @@ To add a new field to your Form:
117
117
118
118
- **Radio group** - This field provides a group of single-select options with a radio button, sometimes referred to as an option button group.
119
119
120
-
- **Select** - This option shows a dropdown list where a visitor may choose one option. This field also allows multiple selections, which changes the display to a box with the options listed. On a mobile device, a single select box shows a dialog box with radio buttons, and with checkboxes for a multi-select field.
120
+
- **Select: Single or multiple choices** - This option shows a dropdown list where a visitor may choose one option. This field also allows multiple selections, which changes the display to a box with the options listed. On a mobile device, a single select box shows a dialog box with radio buttons, and with checkboxes for a multi-select field.
121
121
122
122
- **Social login** - This allows the visitor to connect their Twitter, Facebook or LinkedIn profiles with their Contact record. You must configure the Plugin for the social network before using this field.
123
123
124
-
- **Text** - This field shows a text box with 255 characters available. Common uses include specifying the visitor's first name, last name, city, and so forth.
124
+
- **Text: Short answer** - This field shows a text box with 255 characters available. Common uses include specifying the visitor's first name, last name, city, and so forth.
125
125
126
-
- **Text area** - Similar to the text field, but without the 255 character limitation. The text area field has a character limit of 65,535 characters.
126
+
- **Text: Paragraph** - Similar to the text field, but without the 255 character limitation. The text area field has a character limit of 65,535 characters.
127
127
128
128
- **URL** - This field validates the entry as being in the expected format for a URL, including ``https://`` or ``http://``
0 commit comments