Configuration de différentes salutations IVR par date

Comment configurer la lecture de différentes salutations IVR en fonction de la date (premier jour du mois) ?
Réponse :
Solution via une application PHP-AGI :

  1. Créer une nouvelle application php-agi dans le dialplan
  2. Utiliser le script de vérification de date :
if (date("d") == 1){
$agi->exec_goto("internal", $ivr_one, "1");
}else{
$agi->exec_goto("internal", $ivr_all, "1");
}
  1. Diriger les appels entrants vers cette application
  2. Configurer différents IVR pour le premier jour et les autres jours

Решение через PHP-AGI приложение:

  1. Создать новое приложение типа php-agi в диалплане
  2. Использовать скрипт проверки даты:
if (date("d") == 1){
    $agi->exec_goto("internal", $ivr_one, "1");
}else{
    $agi->exec_goto("internal", $ivr_all, "1");
}
  1. Направить входящие вызовы на это приложение
  2. Настроить разные IVR для первого числа и остальных дней

Visitez notre groupe pour plus d’informations :