$useragent
$useragent : string
Used as the User-Agent and X-Mailer headers' value.
CodeIgniter Email Class
Permits email to be sent using Mail, Sendmail, or SMTP.
$crlf : string
CRLF character sequence
RFC 2045 specifies that for 'quoted-printable' encoding, "\r\n" must be used. However, it appears that some servers (even on the receiving end) don't handle it properly and switching to "\n", while improper, is the only solution that seems to work for all environments.
initialize(array $config = array()) : \CI_Email
Initialize preferences
array | $config |
clear( $clear_attachments = FALSE) : \CI_Email
Initialize the Email Data
$clear_attachments |
from(string $from, string $name = '', string $return_path = NULL) : \CI_Email
Set FROM
string | $from | |
string | $name | |
string | $return_path | = NULL Return-Path |
reply_to( $replyto, $name = '') : \CI_Email
Set Reply-to
$replyto | ||
$name |
to( $to) : \CI_Email
Set Recipients
$to |
cc( $cc) : \CI_Email
Set CC
$cc |
bcc( $bcc, $limit = '') : \CI_Email
Set BCC
$bcc | ||
$limit |
subject( $subject) : \CI_Email
Set Email Subject
$subject |
message( $body) : \CI_Email
Set Body
$body |
attach(string $file, string $disposition = '', string $newname = NULL, string $mime = '') : \CI_Email
Assign file attachments
string | $file | Can be local path, URL or buffered content |
string | $disposition | = 'attachment' |
string | $newname | = NULL |
string | $mime | = '' |
set_header( $header, $value) : \CI_Email
Add a Header Item
$header | ||
$value |
set_alt_message( $str) : \CI_Email
Set Multipart Value
$str |
set_mailtype( $type = 'text') : \CI_Email
Set Mailtype
$type |
set_wordwrap( $wordwrap = TRUE) : \CI_Email
Set Wordwrap
$wordwrap |
set_protocol( $protocol = 'mail') : \CI_Email
Set Protocol
$protocol |
set_priority( $n = 3) : \CI_Email
Set Priority
$n |
set_newline( $newline = "\n") : \CI_Email
Set Newline Character
$newline |
set_crlf( $crlf = "\n") : \CI_Email
Set CRLF
$crlf |
_append_attachments(string $body, string $boundary, string $multipart = null) : string
Prepares attachment string
string | $body | Message body to append to |
string | $boundary | Multipart boundary |
string | $multipart | When provided, only attachments of this type will be processed |
_prep_quoted_printable( $str) : string
Prep Quoted Printable
Prepares string for Quoted-Printable Content-Transfer-Encoding Refer to RFC 2045 http://www.ietf.org/rfc/rfc2045.txt
$str |