[PHP] mail the contents of an array

2001-08-03 Thread Geoffrey Makstutis
Hi, I'm sure that I'm missing something obvious (probably sleep), but how can I take the contents of several arrays and send them via email? I'd like to take each value from the arrays and include them in the message portion of a mail() command. Any help would be greatly appreciated. Geoffrey

Re: [PHP] mail the contents of an array

2001-08-03 Thread Tim
You could use the implode() function to convert the arrays to strings and then pass the concatenated strings to the mail() function. - Tim On 03 Aug 2001 09:00:04 +, Geoffrey Makstutis wrote: > I'm sure that I'm missing something obvious (probably sleep), but how can I take the >contents of