Welcome Guest, Not a member yet? Register   Sign In
email problem
#1

[eluser]C_Line[/eluser]
i send email to yahoo and the link can be click
but when i send to hotmail, the link unclickable

heres my code
Code:
$message =
"Untuk mengaktifikasikan account anda pada Sinar Jaya Online, klik link dibawah ini
{unwrap}".base_url()."index.php/main/aktivasi_account/".$regis_id."{/unwrap}";


my config
$config = array(
    'protocol' => 'smtp',
    'smtp_host' => 'ssl://smtp.mail.yahoo.com',
    'smtp_port' => 465,
'smtp_timeout' => 10,
    'smtp_crypto' => 'ssl',
"smtp_user" => "[email protected]",  
"smtp_pass" => "xxx",
    'mailtype'  => 'text',
'charset'   => 'utf-8',
'newline' => "\r\n"
);  
$this->email->initialize($config);

thx for help
#2

[eluser]michalsn[/eluser]
Code:
'mailtype'  => 'html'
and then in message use normal html syntax for clickable link.
#3

[eluser]PhilTem[/eluser]
The link unclickable because no real link just text. Need to wrap in <a href=""></a> to make clickable




Theme © iAndrew 2016 - Forum software by © MyBB