gpt4 book ai didi

php - 使用 php 和 sendmail 发送有关测试 docker 容器的电子邮件

转载 作者:行者123 更新时间:2023-12-02 16:16:11 24 4
gpt4 key购买 nike

我使用的是 ubuntu 16.04。我有一个(测试)docker (docker-compose) 容器运行 php 5.6 和 apache 2.4。

在生产平台(没有docker)上,邮件是通过sendmail发送的。

如何在 docker 容器上发送测试电子邮件(使用 sendmail)?

提前感谢您的回复。

最佳答案

它有效。

在 Dockerfile 中:

# sendmail config
############################################

RUN apt-get install -q -y ssmtp mailutils

# root is the person who gets all mail for userids < 1000
RUN echo "root=yourAdmin@email.com" >> /etc/ssmtp/ssmtp.conf

# Here is the gmail configuration (or change it to your private smtp server)
RUN echo "mailhub=smtp.gmail.com:587" >> /etc/ssmtp/ssmtp.conf
RUN echo "AuthUser=your@gmail.com" >> /etc/ssmtp/ssmtp.conf
RUN echo "AuthPass=yourGmailPass" >> /etc/ssmtp/ssmtp.conf

RUN echo "UseTLS=YES" >> /etc/ssmtp/ssmtp.conf
RUN echo "UseSTARTTLS=YES" >> /etc/ssmtp/ssmtp.conf


# Set up php sendmail config
RUN echo "sendmail_path=sendmail -i -t" >> /usr/local/etc/php/conf.d/php-sendmail.ini

用于在 php sendmail 容器内进行测试:

echo "Un message de test" | mail -s "sujet de test" mailSendingAdresse@email.com

在这两个文档的帮助下我成功了:

关于php - 使用 php 和 sendmail 发送有关测试 docker 容器的电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47247952/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com