Allow to configure CC mailing
parent
6ad54e1a3a
commit
5fe39a1cbf
@ -1,13 +1,14 @@
|
||||
<?php
|
||||
$CONVERT_CMD = "/usr/local/bin/pdftk";
|
||||
|
||||
$mailHost = 'mailserver.example.com'; // Specify main and backup server
|
||||
$mailPort = 587; // Set the SMTP port
|
||||
$mailSMTPAuth = true; // Enable SMTP authentication
|
||||
$mailUsername = 'mailuser'; // SMTP username
|
||||
$mailPassword = 'mailpasswd'; // SMTP password
|
||||
$mailSMTPSecure = 'tls'; // Enable encryption, 'ssl' also accepted
|
||||
$mailHost = 'mailserver.example.com'; // Specify main and backup server
|
||||
$mailPort = 587; // Set the SMTP port
|
||||
$mailSMTPAuth = true; // Enable SMTP authentication
|
||||
$mailUsername = 'mailuser'; // SMTP username
|
||||
$mailPassword = 'mailpasswd'; // SMTP password
|
||||
$mailSMTPSecure = 'tls'; // Enable encryption, 'ssl' also accepted
|
||||
|
||||
$mailDest = "someone@example.com";
|
||||
$mailDestCC = "someone_cc@example.com"; // leave empty if no CC is required
|
||||
$mailFrom = "someone@example.com";
|
||||
|
||||
|
Loading…
Reference in New Issue