|
- <?php
-
-
-
- use domain\Producer\Producer\ProducerModule;
- use yii\helpers\Html;
-
- $producerModule = ProducerModule::getInstance();
-
- ?>
-
- <p>Bonjour <?= Html::encode($user->name); ?>,</p>
-
- <p>Le paiement de votre commande d'un montant de <strong><?= number_format($amount, 2) ?> €</strong> n'a pas abouti.</p>
-
- <p>Attention, votre commande ne sera effective qu'à réception du paiement.</p>
-
- <p>Vous pouvez retrouver le lien de paiement dans votre <a href="<?= Yii::$app->urlManagerProducer->createAbsoluteUrl(['credit/history','slug_producer' => $producer->slug]) ?>">historique de commandes</a>.</p>
-
- <?php $payment_infos = $producerModule->getConfig('option_payment_info') ; ?>
- <?php if($payment_infos && strlen($payment_infos) > 0): ?>
- <p><strong>Informations de paiement :</strong><br />
- <?= nl2br(Html::encode($payment_infos)); ?></p>
- <?php endif; ?>
-
- <?php $order_infos = $producerModule->getConfig('order_infos') ; ?>
- <?php if($order_infos && strlen($order_infos) > 0): ?>
- <p><strong>Informations générales :</strong><br />
- <?= nl2br(Html::encode($order_infos)); ?></p>
- <?php endif; ?>
-
- <p>À bientôt,<br />
- <?= Html::encode($producer->name); ?></p>
|