in reply to Re: Re: 'Best way to email edited array contents?
in thread 'Best way to email edited array contents?

I guess all I needed was a sprintf command joining the $body with each additional user for which quota data was collected:
$body = $body . sprintf ("$user\'s disk usage \= %.2f MB.\nHas %.2f MB + available.\nQuota se t to: %.2f MB\n\n", $used, $remainingquota, $limit);</BOLD>

Now I get the emailed quota data.
Thanks for the reponses, Chris

Replies are listed 'Best First'.
Re: Re: Re: Re: 'Best way to email edited array contents?
by l3nz (Friar) on Feb 12, 2004 at 21:03 UTC
    I guess what you say is true, but how could it work before upgrading?