PHP configuration for setting up emails

Abstract


This page is available in order to setup the configuration to send emails

http://php.net/manual/fr/function.mail.php

#
# /etc/ssmtp.conf -- a config file for sSMTP sendmail.
#
# See the ssmtp.conf(5) man page for a more verbose explanation of the
# available options.
#

# The person who gets all mail for userids < 500
# Make this empty to disable rewriting.
root=postmaster

# The place where the mail goes. The actual machine name is required
# no MX records are consulted. Commonly mailhosts are named mail.domain.com
# The example will fit if you are in domain.com and your mailhub is so named.
#mailhub=mail

# Example for SMTP port number 2525
# mailhub=mail.your.domain:2525
# Example for SMTP port number 25 (Standard/RFC)
# mailhub=mail.your.domain
# Example for SSL encrypted connection
#mailhub=mail.iyalimited.net:465
mailhub=mail.iyalimited.net:25

# Where will the mail seem to come from?
#RewriteDomain=

# The full hostname
#Hostname=

# Set this to never rewrite the "From:" line (unless not given) and to
# use that address in the "from line" of the envelope.
#FromLineOverride=YES

# Use SSL/TLS to send secure messages to server.
#UseTLS=YES

# Use SSL/TLS certificate to authenticate against smtp host.
#UseTLSCert=YES

# Use this RSA certificate.
#TLSCert=/etc/pki/tls/private/ssmtp.pem
#TLSCert=/etc/pki/tls/cert.pem


# Get enhanced (*really* enhanced) debugging information in the logs
# If you want to have debugging of the config file parsing, move this option
# to the top of the config file and uncomment
#Debug=YES

Resources

Problem is still current.
http://stackoverflow.com/questions/14456673/sending-email-with-php-from-an-smtp-server
https://www.lifewire.com/send-email-from-php-script-using-smtp-authentication-and-ssl-1171197
https://clients.javapipe.com/knowledgebase/132/How-to-Test-Sendmail-From-Command-Line-on-Linux.html
https://coderwall.com/p/ez1x2w/send-mail-like-a-boss
https://www.cyberciti.biz/faq/howto-configure-sendmail-ssl-certificate-email/
http://cromwell-intl.com/linux/sendmail-ssl.html