I posted earlier about using cfmail with google hosted mail.  I was told it 
would require cf8.  We ended up upgrading the account to cf8, but I still can't 
get it to work.  Here is what I have.  The page runs without error, I just 
don't ever receive the test mail:

<cfset mailAttributes = {
server="smtp.gmail.com",
username="webs...@website.com",
password="password",
from="webs...@website.com",
to="rece...@gmail.com",
subject="Eat my shorts"
}
/>

<cfmail port="465" useSSL="true"
attributeCollection="#mailAttributes#"
>port 465, SSL enabled</cfmail>

<cfmail port="587" useTLS="true"
attributeCollection="#mailAttributes#"
>port 587, TLS enabled</cfmail>

<cfmail port="465" useSSL="true" useTLS="true"
attributeCollection="#mailAttributes#"
>port 465, SSL and TLS enabled</cfmail>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330089
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to