Browse Source

made alert emails easier to read

master
memespring 17 years ago
parent
commit
5f8919d5b9
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      tools/application_mailer.php

+ 3
- 1
tools/application_mailer.php View File

@@ -78,13 +78,15 @@ print_r($application_results);
$smarty->assign("applications", $applications);
$smarty->assign("base_url", BASE_URL);
$smarty->assign("confirm_id", $user_results[$i][8]);
$smarty->assign("alert_area_size", $user_results[$i][7]);
$smarty->assign("alert_postcode", $user_results[$i][2]);
//Get the email text
$email_text = $smarty->fetch(SMARTY_TEMPLATE_DIRECTORY . 'alert_email_text.tpl');
//Send the email
if($email_text !=""){
send_text_email($user_results[$i][1], EMAIL_FROM_NAME, EMAIL_FROM_ADDRESS, "Planning applications near " . $user_results[$i][2], $email_text);
send_text_email($user_results[$i][1], EMAIL_FROM_NAME, EMAIL_FROM_ADDRESS, "Planning applications near " . strtoupper($user_results[$i][2]), $email_text);
$this->store_log("sent applications to " . $user_results[$i][1]);
}else{
$this->store_log("BLANK EMAIL TEXT !!! EMAIL NOT SENT");


Loading…
Cancel
Save