You should be able to send an email with subject = "New: %title"
But right now %title doesn't get substituted in the subject field, only in the email "message" field.
You should be able to send an email with subject = "New: %title"
But right now %title doesn't get substituted in the subject field, only in the email "message" field.
Comments
Comment #1
jjeff commentedA simple one liner fixes this. Just open up "actions.inc" and add
$subject = strtr($subject, $variables);just before
$message = strtr($message, $variables);in the 'do' case of the action_send_email() function (on or about line 385).
Easy peasy!
Comment #2
jvandyk commentedCommitted. Thanks.
Comment #3
(not verified) commented