I am using FAQ Ask along with the FAQ module. Everything works well but the emails are coming all bunched up. I need to be able to re-arrange the layout as I want (simple text with active links).
Below is what I see:
I am using FAQ Ask along with the FAQ module. Everything works well but the emails are coming all bunched up. I need to be able to re-arrange the layout as I want (simple text with active links). Below is what I see: |
|||
|
These emails are assembled in the faq_ask_mail function (faq_ask,nodule, line 1013). The body is assembled beginning at line 1077. If you wish to open up the body, you can go in and include some newline ('\n') characters into the text. Since this hacks the module core, perhaps you should submit a patch as a feature request. EDIT: faq_ask_mail is an implementation of hook_mail. You can define your own hook_mail in a custom module to override the output. You must, however, adjust the weight of your custom module so it is processed after the faq_ask module. You would handle it as follows:
Remember that this will have no effect if it is executed before the faq_ask_mail function. |
|||||
|