I would like to change the output email that send is generating (e.g. Format it better).
In particular, it adds repeated links to the bottom of the page. I'm not sure why but they add up to every link in the page (6 are service links, 1 is the send to link, and the other a cck link field)?
[1] http://example.com/?q=node/12
[2] http://www.field.com
[3] http://www.field.com
[4] http://www.field.com
[5] http://www.field.com
[6] http://www.feld.com
[7] http://www.field.com
[8] http://www.field.com
It also does adds a # (in the example below '8') after what is normally a link on my page??
CCJField [8] Mar/7, Wed 10pm - 5pm
I couldn't find a theme function. Where would i change the output that send generates for the node it creates the mail from???
Also. in the send module config you can set up the template :
1) Is this filtered HTML?
2) What other tags can i use other than
%message
%body
in particular, it looks like $links and $service_links are winding up in the body and that's what's generating half of the links at the bottom of the page.
thanks
thanks
thanks
Comments
Comment #1
mandclu commentedI happened to be working on some similar problems, and thought I'd share my progress.
The theme functions are in send.inc. At the very end of the file, you'll find theme_send_body, which defines what parameters are replaced into the template. The last four lines of the function are:
You could, for example, alter them as follows:
Comment #2
jerdavisConsolidating discussion on this issue here: http://drupal.org/node/210739