How do I enter a do while loop inside a variable?
$email_address = do { code_here } while
I want to call $email_address later and have it populated with all the available email addresses.
It's going to be an email link like this
echo '<a href"=mailto:',$email_address,'">Click Here</a>
I want it to generate a new email message with all the email addresses in the To: line. I just can't get a loop running within the initiall variable settings.