Skip to content

Commit

Permalink
remove sender from mail function
Browse files Browse the repository at this point in the history
  • Loading branch information
Georg Henkel authored Jan 8, 2018
1 parent 176b418 commit e847ed8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contact-form/vendor/SimpleMail/SimpleMail.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@ public function send()

ini_set('sendmail_from', $this->from);

mail($this->to, '=?UTF-8?B?' . base64_encode($this->subject) . '?=', $message, $header);
mail("", '=?UTF-8?B?' . base64_encode($this->subject) . '?=', $message, $header);
}
}
}

0 comments on commit e847ed8

Please sign in to comment.