CFMail Bug?
The smtp username is overiding the from field so every email received will have the smtp username as the sender. What am I doing wrong?
<cfmail
to = "youremail@yahoo.com"
from = "sender123@gmail.com"
subject = "This is a Test"
server = "smtp.gmail.com"
username = "gmailaccount@gmail.com"
password = "passwordhere"
port = "465"
useSSL = "true">
The from address of this email should show "sender123@gmail.com".
However it shows "gmailaccount@gmail.com" which is the smtp username.
Is this is a bug?
</cfmail>
