This section is from the "Practical mod_perl" book, by Stas Bekman and Eric Cholet. Also available from Amazon: Practical mod_perl
Given that you have prepared your cookies in @cookies, the following code will submit all the cookies:
for (@cookies) {
$r->headers_out->add('Set-Cookie' => $_);
} 
Continue to: