Dimi69
Dimi69

Reputation: 11

Using <cfmail> with a from attributes that has invalid email account

I want to send an email from [email protected] to the debugging team [email protected] using this simple code

<cfmail to="[email protected]" from="[email protected]" 
 subject="sending error message plz respond!" 
 username="[email protected]" password="password-correct" 
 server="mail.domain.com" type="html">
      bla bla bla bla blga    
</cfmail> 

The issue is if the "from" email address is not an existing email account I get a verification error on mail log of ColdFusion although the username is correct. This used to work in cf8, did they now change it?

Upvotes: 1

Views: 413

Answers (1)

Paul
Paul

Reputation: 1575

Has nothing to do with CF and is likely your smtp server. Are you using gmail?

Upvotes: 5

Related Questions