We are running a website with a web to email form. We force https to secure the transmission from the browser to the web server. From the web server we use PHP to generate an email message containing the information received. The destination email server is in another location. I am wondering if the transmission of the email from the web server to the destination email server is secure.
So I have several related questions:
A) Is the transmission of emails from the sender server to the recipient server secured by default? (To be clear, this is NOT a question about the connection from an email client to an SMTP server)
B) if the transmission is not secured by default, how can I check if messages are being transmitted securely?
C) if transmission is currently not secured, how can I request/force a secure connection?
We are using the default PHP mail function (via a Joomla extension)
Thank you!