From: Marius Gavrilescu Date: Sat, 18 Jun 2016 23:34:43 +0000 (+0100) Subject: Add order total in email subject X-Git-Tag: 0.000_008~1 X-Git-Url: http://git.ieval.ro/?p=app-web-oof.git;a=commitdiff_plain;h=dbb58773018bdfe16f6fbf781e825ad99d7cc94e Add order total in email subject --- diff --git a/lib/App/Web/Oof.pm b/lib/App/Web/Oof.pm index 9c62d54..a131c9c 100644 --- a/lib/App/Web/Oof.pm +++ b/lib/App/Web/Oof.pm @@ -226,7 +226,7 @@ sub order_app { header => [ From => $ENV{OOF_EMAIL_FROM}, To => $ENV{OOF_EMAIL_TO}, - Subject => "Order $id placed", + Subject => "Order $id placed for ".stringify_money($parms{total}), ], body => 'A new order was placed.', )) if $ENV{OOF_EMAIL_TO};