Commit: 57dfe8668cb7310c04920d8f5e889443a9f9fc65 Author: Hannes Magnusson <[email protected]> Tue, 29 Oct 2013 17:06:11 -0700 Parents: 1f32d792a7ada49f8414e77cab9c2c9aeb121369 Branches: master
Link: http://git.php.net/?p=web/master.git;a=commitdiff;h=57dfe8668cb7310c04920d8f5e889443a9f9fc65 Log: Set the correct envelope sender so these get through Changed paths: M scripts/email-note-summaries M scripts/event-weekly-email Diff: diff --git a/scripts/email-note-summaries b/scripts/email-note-summaries index bdc0f58..33396d4 100755 --- a/scripts/email-note-summaries +++ b/scripts/email-note-summaries @@ -33,4 +33,4 @@ $body = "Following are the top 20 pages of the manual, sorted by the number\n" . sprintf("notes represent %.1f%% of the %d total user notes.\n\n", ($top20 / $total)*100, $total) . $body; -mail("[email protected], [email protected]","Notes Status, $total total",$body,"From: [email protected]"); +mail("[email protected], [email protected]","Notes Status, $total total",$body,"From: [email protected]", "[email protected]"); diff --git a/scripts/event-weekly-email b/scripts/event-weekly-email index b32896b..9322a32 100755 --- a/scripts/event-weekly-email +++ b/scripts/event-weekly-email @@ -24,6 +24,6 @@ Thanks!"; $headers = "From: [email protected]"; - mail('[email protected]', $subject, $message, $headers); + mail('[email protected]', $subject, $message, $headers, "[email protected]"); } -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
