Seems to me it has to work, but I would suggest a couple of little
changes to make the source code more readable (see below):

On Fri, Feb 24, 2017 at 9:15 AM, ToddAndMargo <toddandma...@zoho.com> wrote:
>    for @Report -> $Line { $StringFullOfLineFeeds .= ( "$Line" ~ "\n" ); }

here I would use join, much simpler than a for-string-concatenation

>                 "$Subject$StringFullOfLineFeeds);

here I would use explicit string concatenation to make it clearer you
are using two variables on the same line. Don't you miss a double
tick?

Luca

Reply via email to