1

I want to send an email from error@domain.com to the debugging team debug@domain.com using this simple code

<cfmail to="debug@domain.com" from="error@domain.com" 
 subject="sending error message plz respond!" 
 username="sender@domain.com" 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?

James A Mohler
  • 11,060
  • 15
  • 46
  • 72
Dimi69
  • 11
  • 1

1 Answers1

5

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

Paul
  • 1,577
  • 7
  • 10