From 2067d1a727e7eb5e5ffb40e967f3d1fc4c8a41b2 Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Thu, 13 Nov 2008 22:59:24 +0000 Subject: Changing EOL style to LF --- user_guide/helpers/email_helper.html | 202 +++++++++++++++++------------------ 1 file changed, 101 insertions(+), 101 deletions(-) (limited to 'user_guide/helpers/email_helper.html') diff --git a/user_guide/helpers/email_helper.html b/user_guide/helpers/email_helper.html index 732e5154b..11c6d1ca8 100644 --- a/user_guide/helpers/email_helper.html +++ b/user_guide/helpers/email_helper.html @@ -1,102 +1,102 @@ - - - - - -Email Helper : CodeIgniter User Guide - - - - - - - - - - - - - - - - - - - - - -
- - - - - -

CodeIgniter User Guide Version 1.7

-
- - - - - - - - - - -
- - -
- - - -
- - -

Email Helper

- -

The Email Helper provides some assistive functions for working with Email. For a more robust email solution, see CodeIgniter's Email Class.

- -

Loading this Helper

- -

This helper is loaded using the following code:

-

$this->load->helper('email');

- -

The following functions are available:

- -

valid_email('email')

- -

Checks if an email is a correctly formatted email. Note that is doesn't actually prove the email will recieve mail, simply that it is a validly formed address.

-

It returns TRUE/FALSE

- $this->load->helper('email');
-
-if (valid_email('email@somesite.com'))
-{
-    echo 'email is valid';
-}
-else
-{
-    echo 'email is not valid';
-}
-

send_email('recipient', 'subject', 'message')

-

Sends an email using PHP's native mail() function. For a more robust email solution, see CodeIgniter's Email Class.

-
- - - - - - + + + + + +Email Helper : CodeIgniter User Guide + + + + + + + + + + + + + + + + + + + + + +
+ + + + + +

CodeIgniter User Guide Version 1.7

+
+ + + + + + + + + + +
+ + +
+ + + +
+ + +

Email Helper

+ +

The Email Helper provides some assistive functions for working with Email. For a more robust email solution, see CodeIgniter's Email Class.

+ +

Loading this Helper

+ +

This helper is loaded using the following code:

+

$this->load->helper('email');

+ +

The following functions are available:

+ +

valid_email('email')

+ +

Checks if an email is a correctly formatted email. Note that is doesn't actually prove the email will recieve mail, simply that it is a validly formed address.

+

It returns TRUE/FALSE

+ $this->load->helper('email');
+
+if (valid_email('email@somesite.com'))
+{
+    echo 'email is valid';
+}
+else
+{
+    echo 'email is not valid';
+}
+

send_email('recipient', 'subject', 'message')

+

Sends an email using PHP's native mail() function. For a more robust email solution, see CodeIgniter's Email Class.

+
+ + + + + + \ No newline at end of file -- cgit v1.2.3-24-g4f1b