From ff845f94cc8876bc6c23c2f55b695bc569038512 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Thu, 26 Jun 2008 17:05:55 +0000 Subject: changed your-site.com to example.com doc-wide --- user_guide/libraries/email.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'user_guide/libraries/email.html') diff --git a/user_guide/libraries/email.html b/user_guide/libraries/email.html index e8325431a..88c63f046 100644 --- a/user_guide/libraries/email.html +++ b/user_guide/libraries/email.html @@ -83,7 +83,7 @@ Email Class $this->load->library('email');

-$this->email->from('your@your-site.com', 'Your Name');
+$this->email->from('your@example.com', 'Your Name');
$this->email->to('someone@example.com');
$this->email->cc('another@another-example.com');
$this->email->bcc('them@their-example.com');
@@ -185,11 +185,11 @@ will NOT need to use the $this->email->initialize() function if you s

$this->email->from()

Sets the email address and name of the person sending the email:

-$this->email->from('you@your-site.com', 'Your Name'); +$this->email->from('you@example.com', 'Your Name');

$this->email->reply_to()

Sets the reply-to address. If the information is not provided the information in the "from" function is used. Example:

-$this->email->reply_to('you@your-site.com', 'Your Name'); +$this->email->reply_to('you@example.com', 'Your Name');

$this->email->to()

@@ -235,7 +235,7 @@ in a loop, permitting the data to be reset between cycles.

    $this->email->clear();

    $this->email->to($address);
-    $this->email->from('your@your-site.com');
+    $this->email->from('your@example.com');
    $this->email->subject('Here is your info '.$name);
    $this->email->message('Hi '.$name.' Here is the info you requested.');
    $this->email->send();
@@ -280,7 +280,7 @@ word wrapping within part of your message like this:

The text of your email that
gets wrapped normally.

-{unwrap}http://www.example.com/a_long_link_that_should_not_be_wrapped.html{/unwrap}
+{unwrap}http://example.com/a_long_link_that_should_not_be_wrapped.html{/unwrap}

More text that will be
wrapped normally.
-- cgit v1.2.3-24-g4f1b