I have a docker container built from this dockerfile:
FROM php:8.2-apache
RUN a2enmod rewrite
RUN a2enmod include
ENV PORT=80
I want to send an e-mail from php using it's mail() function.
What do I have to set up?
Does sendmail/PHPmailer do what I want? And if it does, how do I install and configure it?
I'm on a Windows 11 host in case this matters.