RE: Ways to test cfmail tag

2006-03-30 Thread Dawson, Michael
This would work. Also, you should enable the Debug output in the CF administrator mail settings. In that same settings page, check the box that verifies the mail server connection, then save the settings. See, at that point, if the connection was successful or not. Then, if it was, check the

RE: Ways to test cfmail tag

2006-03-30 Thread Michael T. Tangorre
From: Steve Kahn [mailto:[EMAIL PROTECTED] Were not getting any mail thru our cfmail tag and want to test it. If I put the following code on a page and call the url will it work, or what would you recommend as a way to test the cfmail tag? Thanks 'cfmailtest.cfm' cfmail

RE: Ways to test cfmail tag

2006-03-30 Thread Andy Matthews
This code as is won't work because it's expecting a form variable. But yes, that's a great way to test. Just hard code a variable above the cfmail tag with an email address: cfset form.email = [EMAIL PROTECTED] cfmail from=#form.email# to=[EMAIL PROTECTED]