-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(doc): remove escaped config params for contact_smtp
- Loading branch information
Showing
1 changed file
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -255,10 +255,12 @@ Un message d'alerte vous informe si une nouvelle version d'un thème ou d'une ex | |
Sur certains hébergements, l'envoi de mail par défaut ne marche pas , il faut créer un compte smtp | ||
et donc rajouter dans le fichier `wakka.config.php` les paramètres suivants : | ||
|
||
'contact\_mail\_func' => 'smtp', | ||
'contact\_smtp\_host' => 'ssl://<mon serveur smtp>:465', | ||
'contact\_smtp\_user' => '[email protected]', | ||
'contact\_smtp\_pass' => '<monpassword>', | ||
```php | ||
'contact_mail_func' => 'smtp', | ||
'contact_smtp_host' => 'ssl://<mon serveur smtp>:465', | ||
'contact_smtp_user' => '[email protected]', | ||
'contact_smtp_pass' => '<monpassword>', | ||
``` | ||
|
||
Attention, tous les serveurs mail n'acceptent pas de jouer ce jeu. | ||
|
||
|