Skip to content
This repository has been archived by the owner on Jul 20, 2020. It is now read-only.

Commit

Permalink
edit to send_plain_email
Browse files Browse the repository at this point in the history
  • Loading branch information
BigRedBot authored Jan 8, 2018
1 parent ffa4a00 commit b2251ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions php/example_usage_advanced.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ function send_email($name = "", $address = "", $subject = "", $body = "", $from_
return mail($send_email_to, "=?UTF-8?B?" . base64_encode($subject) . "?=", $body, $send_email_header);

This comment has been minimized.

Copy link
@Pukkamade
}

function send_plain_email($name = "", $address = "", $subject = "", $body = "", $from_name = null, $from_address = null, $html = false) {
return send_email($name, $address, $subject, $body, $from_name, $from_address, $html);
function send_plain_email($name = "", $address = "", $subject = "", $body = "", $from_name = null, $from_address = null) {
return send_email($name, $address, $subject, $body, $from_name, $from_address, false);
}

if ($process_ipn) {
Expand Down

0 comments on commit b2251ae

Please sign in to comment.