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.

13 lines
579 B

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