|
- <?php
-
-
-
- use domain\User\User\User;
- use yii\helpers\Html;
-
- ?>
-
- <p>Bonjour <?= Html::encode($user->name) ?>,</p>
-
- <p>Votre inscription sur <strong>Souke</strong> a bien été prise en compte.</p>
-
- <p>Voici votre identifiant de connexion : <br />
- <strong><?= Html::encode($user->email) ?></strong></p>
-
- <?php if($user->status == User::STATUS_PRODUCER): ?>
- <p>Vous pouvez dès maintenant vous connecter à l'<a href="<?= Yii::$app->urlManagerBackend->createAbsoluteUrl(['dashboard/index']); ?>">administration</a> pour configurer votre compte producteur.</p>
- <p>Si vous avez des questions ou si vous avez besoin d'être accompagné lors de cette étape, n'hésitez pas à me contacter en réponse à ce mail ou directement au <strong><?= Yii::$app->parameterBag->get('adminPhoneNumber') ?></strong>.</p>
- <?php else: ?>
- <?php if(!is_null($producer)): ?>
- <p>Vous pouvez maintenant <a href="<?= Yii::$app->urlManagerProducer->createAbsoluteUrl(['site/index', 'slug_producer' => $producer->slug]); ?>">passer commande</a> chez votre producteur <strong><?= Html::encode($producer->name); ?></strong>.</p>
- <?php else: ?>
- <p>Vous pouvez maintenant passer commande chez votre producteur.</p>
- <?php endif; ?>
- <?php endif; ?>
-
- <p>À bientôt,<br />
- <?= Yii::$app->parameterBag->get('adminFirstname') ?></p>
|