-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from multnomah-county-it/dev
PHPMailer integration debugging
- Loading branch information
Showing
4 changed files
with
164 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,6 +46,19 @@ ilsws: | |
timeout: 60 | ||
max_retries: 3 | ||
max_search_count: 20 | ||
# Configuration for PHPMailer | ||
smtp: | ||
smtp_host: 'smtp.host.domain' | ||
smtp_port: 587 | ||
smtp_protocol: 'tls' | ||
smtp_autotls: true | ||
smtp_timeout: 30 | ||
smtp_username: USERNAME | ||
smtp_password: PASSWORD | ||
smtp_from: '[email protected]' | ||
smtp_fromname: 'SENDER NAME' | ||
smtp_replyto: '[email protected]' | ||
smtp_allowhtml: true | ||
# SirsiDynix Symphony parameters. For the most part, these must match values you have configured in | ||
# your Symphony system. | ||
symphony: | ||
|
@@ -65,8 +78,6 @@ symphony: | |
13-120: '0_MULT' | ||
# If you set this value, it will be used to set the days before expiration of online accounts | ||
online_account_expiration: 90 | ||
# The from_email address will be as the from address for any emails sent by the code library | ||
from_email: '[email protected]' | ||
# Template path (www user must have read access) | ||
# template_path: '~/web/themes/custom/multcolibtheme/templates/content' | ||
template_path: '/Users/johnh3/Documents/php/ilsws/templates' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters