제목 | smtp 어떻게 해야되나요?????? | ||
---|---|---|---|
글쓴이 | 반달 | 작성시각 | 2015/10/02 23:08:18 |
|
|||
gmail 은 smtp 사용해서 보내지는 데 네이버같은경우에는 안되네요.... 왜그런걸까요??? $config = array( 'protocol' => 'smtp', 'smtp_host' => smtp.naver.com, 'smtp_port' => 465, 'smtp_user' => 아이디, 'smtp_pass' => 비밀번호, 'mailtype' => 'html', 'charset' => 'utf-8', 'wordwrap' => TRUE ); $this->email->initialize($config); $this->email->set_newline("\r\n"); $this->email->from('test@gmail.com', '관리자') $this->email->to("test@gmail.com"); $this->email->subject('smtp테스트'); $this->email->message("test"); $this->email->send(); |
|||
다음글 | view페이지 파일이 (1) | ||
이전글 | 카페24 호스팅을 사용하다가 가비아로 갈아탔습니다 그런... (2) | ||
수야
/
2015/10/05 00:18:05 /
추천
0
smtp 전송은 제대로 된건 확실한건가요?
|