Skip to content

Commit

Permalink
Fold possibly-long header lines
Browse files Browse the repository at this point in the history
  • Loading branch information
yoe committed Feb 11, 2024
1 parent 07c9bef commit 2d75380
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/sreview-notify
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ sub notify_email() {
}
$refid = $talk->corrections->{serial};
my $email = Email::Stuffer->from($config->get('email_from'))
->to(join(',', @to_recips))
->to(join(",\n ", @to_recips))
->subject($mt->render($subject, {title => $title}))
->cc(join(',', @cc_recips))
->header(References => join(', ', @references))
->cc(join(",\n ", @cc_recips))
->header(References => join(",\n ", @references))
->header("Message-ID" => "<sreview-$nonce-$refid-$action\@$host>")
->text_body($body);
say "Sending out " . $email->as_string;
Expand Down

0 comments on commit 2d75380

Please sign in to comment.