Codeigniter を使用して確認登録メールをユーザーに送信しようとしています。検証リンクを送信する必要がありますが、.comなどのプロトコルの前にあるドット記号に問題があります。そして、 comの前のドット記号「. 」を削除しようとしましたが、正しく動作します。以下のコードを参照してください。
$config['mailtype'] = 'html';
$config['protocol'] = 'sendmail';
$config['mailpath'] = '/usr/sbin/sendmail';
$config['charset'] = 'utf-8';
$config['wordwrap'] = TRUE;
$this->email->initialize($config);
$this->email->to($email);
$this->email->from('info@mymail.com');
$this->email->subject('Mail Confirm');
$message = "<p>Thanks for registration and you have successfuly register.</p>";
$message .= "<p>Please click link here to confirm your registration.</p>";
//Here is my problem
$message .= "<a href='http://www.mywebsite.com/job_pages/active?code=".$code."' >test</a>";
$this->email->message($message);