Skip to content

Commit 8a18b76

Browse files
committed
Fix usage for user_recipients parameter, resolves #9
1 parent 4e7a3f9 commit 8a18b76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/templates/tags/email-contact.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ For full documentation of available parameters please see the [ExpressionEngine
3939

4040
```twig
4141
{% set form = exp.email.contact_form({
42-
user_recipients: 'no',
42+
user_recipients: false,
4343
recipients: 'admin@example.com',
4444
charset: 'utf-8'
4545
}) %}
@@ -73,7 +73,7 @@ For full documentation of available parameters please see the [ExpressionEngine
7373
```php
7474
@php
7575
$form = $exp->email->contact_form({
76-
user_recipients: 'no',
76+
user_recipients: false,
7777
recipients: 'admin@example.com',
7878
charset: 'utf-8'
7979
})

0 commit comments

Comments
 (0)