You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add configuration for ssmtp to /etc/ssmtp/ssmtp.conf filled with env variables
# cat /etc/ssmtp/ssmtp.conf
# Config file for sSMTP sendmail
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
root=
# The place where the mail goes. The actual machine name is required no
# MX records are consulted. Commonly mailhosts are named mail.domain.com
mailhub=SMTP_HOST
# Where will the mail seem to come from?
rewriteDomain=
# The full hostname
hostname=pantheon
# Are users allowed to set their own From: address?
# YES - Allow the user to specify their own From: address
# NO - Use the system generated From: address
FromLineOverride=YES
AuthUser=SMTP_USER
AuthPass=SMTP_PASS
UseTLS=SMTP_TLS
UseSTARTTLS=SMTP_STARTTLS
Add FROM Header i.e. in send function in Mailer class in Frey/src/helper/Mailer.php
protected function _send(string $to, string $subject, string $message, array
@Jesterboxboy I added a separate container with email agent, I think it should resolve this issue. Updated the readme with infomation about how to make it work.
It would be very comfortable if the functionality to send recovery and signup mails via smarthost would work out of the box with docker compose.
Tested Steps to make it work:
apk add ssmtp
in Frey containerAdd configuration for ssmtp to /etc/ssmtp/ssmtp.conf filled with env variables
protected function _send(string $to, string $subject, string $message, array
The text was updated successfully, but these errors were encountered: