You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
634 B

  1. <?php
  2. $CONVERT_CMD = "/usr/local/bin/convert";
  3. $PDFTK_CMD = "/usr/local/bin/pdftk";
  4. $mailHost = 'mailserver.example.com'; // Specify main and backup server
  5. $mailPort = 587; // Set the SMTP port
  6. $mailSMTPAuth = true; // Enable SMTP authentication
  7. $mailUsername = 'mailuser'; // SMTP username
  8. $mailPassword = 'mailpasswd'; // SMTP password
  9. $mailSMTPSecure = 'tls'; // Enable encryption, 'ssl' also accepted
  10. $mailDest = "someone@example.com";
  11. $mailDestCC = "someone_cc@example.com"; // leave empty if no CC is required
  12. $mailFrom = "someone@example.com";