There are two new attributes are added to cfmail in Coldfusion 11 named "encrypt" and "encryptionalgorithm ". But they are not working. When I am sending normal email it is successful on my local system but with encryption it fails.
<cfmail server="smtp.gmail.com"
username="deepakkumarpadhy631@gmail.com"
password="*****" port="465" usessl="true"
from="deepakkumarpadhy631@gmail.com"
to="dkumar431@gmail.com"
subject="Test Email"
type="text/html"
encrypt = "true"
encryptionalgorithm = "Standard" >
#emailTxt#
</cfmail>
Anyone faced the same issue?