您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

cronRecapCommandes-html.php 348B

12345678910111213141516
  1. <?php
  2. if(count($commandes)):
  3. ?>
  4. <p>Bonjour,</p>
  5. <p>Voici en pièce jointe le récapitulatif des <?= count($commandes) ?> commandes du <?= date('d/m',strtotime($date)) ?>.</p>
  6. <p>À bientôt.</p>
  7. <?php else: ?>
  8. <p>Bonjour,</p>
  9. <p>Vous n'avez aucune commande pour le <?= date('d/m',strtotime($date)) ?>.</p>
  10. <p>À bientôt.</p>
  11. <?php endif; ?>