die
Well - I figured out why iw_solution_email.ipl / ccmail_header.tpl wasn't working.The code for ccmail_header.tpl requires that you have an IWHOME/local/config/wft/solutions/email_map.cfg file - otherwise it does a die and aborts the "page" generation process un-gracefully.I don't need that file - and I want to use the info in tsusers.xml anyway - so I'll just build my own header tpl ...
FYI, I wrote a tech article last year that changes the solution email to read the email address saved by TS instead of in the email_map file. I always hated having to maintain that file.me
Not sure what you mean by debugging an Email task.Using the OOTB Email task, if the email doesn't send, there should be some exception in servletd_out.log that points to the problem.If you want to turn on JavaMail debugging or to customize your email task, a sample email task code is provided under [iw-home]/local/config/lib/content_center/customer_samples_src/src/com/corp/custom/MailNotificationTask.javaAnd in the code, you can see these lines: // print lots of JavaMail mail session debugging info. Turn this off when // email is working properly. public static final boolean DEBUG_MAIL_SESSION = true;