aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_mail.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/functions_mail.inc.php')
-rw-r--r--include/functions_mail.inc.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/functions_mail.inc.php b/include/functions_mail.inc.php
index 68d8dd37c..e38ef44b6 100644
--- a/include/functions_mail.inc.php
+++ b/include/functions_mail.inc.php
@@ -608,12 +608,10 @@ function pwg_mail($to, $args = array())
$headers.= 'Reply-To: '.$args['from']."\n";
if (empty($to))
{
+ // Add only when to is empty
+ // else mail() add 'To:' on header
$headers.= 'To: undisclosed-recipients: ;'."\n";
}
- else
- {
- $headers.= 'To: '.$to."\n";
- }
if (!empty($args['Cc']))
{