SSL 썸네일형 리스트형 gmail 을 사용해서 smtp 로 메일 발송 // 메일발송 공통 부분 require_once (LIB_DIR.'PHPMailer/PHPMailerAutoload.php'); // Create the SMTP session $mail = new PHPMailer(); //$mail->SMTPDebug = 1; // enables SMTP debug information (for testing) // 1 = errors and messages // 2 = messages only $mail->isSMTP(); //$mail->Host = 'smtp.naver.com'; // 네이버 SMTP 서버 - POP3/SMTP의 미사용 일수가 90일을 초과할 경우 '사용 안 함'으로 변경됩니다. $mail->Host = 'smtp.gmail.com'; // .. 더보기 보안서버 설정시 https 로 보여져야 하는 화면에서 경고창뜰때 Stop the "page contains secure and nonsecure items" warning Are your SSL web pages plagued by the browser warning "This page contains both secure and nonsecure items. Do you want to display the nonsecure items?" This is a common error that occurs when some element on a secure web page (one that is loaded with https:// in the address bar) is not being loaded from a secure source. This usually occ.. 더보기 이전 1 다음