Skip to content

Commit

Permalink
send-email: Add --cc
Browse files Browse the repository at this point in the history
Since Junio used this in an example, and I've personally tried to use it, I
suppose the option should actually exist.

Signed-off-by: Ryan Anderson <[email protected]>
  • Loading branch information
pugmajere committed Feb 13, 2006
1 parent a985d59 commit da140f8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Documentation/git-send-email.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ OPTIONS
-------
The options available are:

--cc::
Specify a starting "Cc:" value for each email.

--chain-reply-to, --no-chain-reply-to::
If this is set, each email will be sent as a reply to the previous
email sent. If disabled with "--no-chain-reply-to", all emails after
Expand Down
8 changes: 6 additions & 2 deletions git-send-email.perl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
my $compose_filename = ".msg.$$";

# Variables we fill in automatically, or via prompting:
my (@to,@cc,$initial_reply_to,$initial_subject,@files,$from,$compose);
my (@to,@cc,@initial_cc,$initial_reply_to,$initial_subject,@files,$from,$compose);

# Behavior modification variables
my ($chain_reply_to, $smtp_server, $quiet, $suppress_from, $no_signed_off_cc) = (1, "localhost", 0, 0, 0);
Expand All @@ -48,6 +48,7 @@
"in-reply-to=s" => \$initial_reply_to,
"subject=s" => \$initial_subject,
"to=s" => \@to,
"cc=s" => \@initial_cc,
"chain-reply-to!" => \$chain_reply_to,
"smtp-server=s" => \$smtp_server,
"compose" => \$compose,
Expand Down Expand Up @@ -199,6 +200,9 @@
--to Specify the primary "To:" line of the email.
--cc Specify an initial "Cc:" list for the entire series
of emails.
--compose Use \$EDITOR to edit an introductory message for the
patch series.
Expand Down Expand Up @@ -298,7 +302,7 @@ sub send_message
foreach my $t (@files) {
open(F,"<",$t) or die "can't open file $t";

@cc = ();
@cc = @initial_cc;
my $found_mbox = 0;
my $header_done = 0;
$message = "";
Expand Down

0 comments on commit da140f8

Please sign in to comment.