QUOTE (arvind_2100 @ Jan 14 2005, 03:21 AM)
You will need to edit the new-comment.tmpl file found in tmpl/email
At least in 3.121, new-comment.tmpl is not where you can change the signature that appears in the bottom of the MT generated emails.
You have to edit lib/MT.pm
(caution: this is a main component of the software)Starting at Line 31:
CODE
sub version_slug {
return <<SLUG;
Powered by Movable Type
Version $VERSION
http://www.movabletype.org/
SLUG
}
I changed it to something relating to my weblog:
CODE
sub version_slug {
return <<SLUG;
The Life of Brian
No apologies to Monty Python,
as I had the name and life first.
http://www.mr-miata.com/
SLUG
}
Plain text probably would be best as you are in the middle of code. The http line gets encoded into a clickable link.