Welcome Guest, Not a member yet? Register   Sign In
Email Message Problem
#1

[eluser]Kentish[/eluser]
Hello, am a beginner with codeigniter and php.

I have been following video tutorials and have completed till registration and email confirmation.

However, in the email, i want to send a proper text with formatting such as link and breaks.

Any guide on that please?

Else, can anyone help with the following code?

Code:
$body ="<table>";
        $body .="<tr><td>Thank you for registration.</td></tr>";
        $body .="<tr><td>To activate your account, please visit the following URL: </td></tr>";
        $body .="<tr><td><a href='http://localhost/ci/index.php/user/register_confirm/'>Here</a></td></tr>";
        $body .="<tr><td>Thank You.</td></tr>";
        $body .="</table>";
        
        $mailBody = $body;
        
        $data = array(
        "BODY" => $mailBody,
        );
        
        $this->email->message(); // i need to put the array in here, how do i do that?


Messages In This Thread
Email Message Problem - by El Forum - 06-12-2012, 11:51 PM
Email Message Problem - by El Forum - 06-13-2012, 12:08 AM
Email Message Problem - by El Forum - 06-13-2012, 12:23 AM
Email Message Problem - by El Forum - 06-13-2012, 02:37 AM
Email Message Problem - by El Forum - 06-13-2012, 04:51 AM
Email Message Problem - by El Forum - 06-13-2012, 06:11 AM
Email Message Problem - by El Forum - 06-13-2012, 09:29 AM



Theme © iAndrew 2016 - Forum software by © MyBB