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

jjeff’s picture

Status: Active » Reviewed & tested by the community

A 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!

jvandyk’s picture

Status: Reviewed & tested by the community » Fixed

Committed. Thanks.

Anonymous’s picture

Status: Fixed » Closed (fixed)