Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Soh committed Dec 31, 2016
1 parent e5f381a commit a688913
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
if (mail($to,$subject,$message,$headers))
echo $subject . " mail sent successfully to " . trim($to) . "\n";
else
echo $subject . " mail not sent through to " . trim($to) . " - " . $mail->ErrorInfo . "\n";
echo $subject . " mail not sent through to " . trim($to) . "\n";
}
else
{
Expand All @@ -121,7 +121,7 @@
" mail sent successfully to " . trim($to) . "</center></h1>";
else
echo "<h1><center><br><br><br><br><br><br><br><br>" . $subject .
" mail not sent through to " . trim($to) . " - " . $mail->ErrorInfo . "</center></h1>";
" mail not sent through to " . trim($to) . "</center></h1>";
}
// OPTION 2 - END OF BLOCK
*/
Expand Down

0 comments on commit a688913

Please sign in to comment.