Skip to content

Instantly share code, notes, and snippets.

@ziemekpr0
Last active May 15, 2017 18:15
Show Gist options
  • Save ziemekpr0/767229f3cdfa18e85e69b2a514e56042 to your computer and use it in GitHub Desktop.
Save ziemekpr0/767229f3cdfa18e85e69b2a514e56042 to your computer and use it in GitHub Desktop.
Funkcja wysyłająca wiadomości email przy pomocy frameworku CodeIgniter
<?php
function send_email($recipent_email, $subject, $message)
{
$this->load->library('email');
$this->email->from('no-reply@domena.pl', 'Nadawca');
$this->email->to($recipent_email);
$this->email->subject($subject);
$this->email->message($message);
return ($this->email->send()) ? TRUE : FALSE;
// albo
if ($this->email->send())
echo "Wiadomość została wysłana!";
else
echo "Wystąpił błąd podczas wysyłania wiadomości!";
// wyświetl błędy
echo $this->email->print_debugger();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment