Gareth Londt wrote:
> 
> i am using the Mail::Sendmail module and well i have  it working all nicley
> and stuff but this is were it doent work the way i want it to.
> Firstly i have a text area that needs to filled in with a few email addresses,
> but when i use the regexp for this value in the text area the mail that i get
> has all the headers and including text in the BODY of the message and its not
> suppose to. MY regexp is ~ s/\n+/\, /gm ........i need to replace all the
> enters with a comma so that more than one email can be sent at one time.

use this instead:

s/\s+/,/g

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to