워드프레스에서 관리자 이메일이 변경 대기중입니다. 로 나오고 안 올 때...
해당 테마의 functions.php 에 넣으면 된다.
예) /var/www/wp02.tera.co.kr/wp-content/themes/oceanwp/functions.php
add_action( 'phpmailer_init', 'setup_phpmailer_init' );
function setup_phpmailer_init( $phpmailer ) {
$phpmailer->Host = 'smtp.gmail.com';
$phpmailer->SMTPAuth = true; // Force it to use Username and Password to authenticate
$phpmailer->Port = 465;
$phpmailer->Username = 'gmail주소';
$phpmailer->Password = 'gmail비번';
$phpmailer->SMTPSecure = "ssl";
// $phpmailer->From = "noreply@tera.co.kr";
// $phpmailer->FromName = "NoReply";
$phpmailer->IsSMTP();
}
물론, 서버에서 php mail() 을 지원해야 함.
아니면 SMTP 플러그인 설치하세요.
그래도 안되면 구글 계정의 보안에서 "보안이 낮은 수준의 앱 허용" 을 해야 합니다.
'IT일반' 카테고리의 다른 글
맥북에서 sftp로 파일 업로드 쉘스크립트 (0) | 2021.12.01 |
---|---|
워드프레스 WP Mailer SMTP 생성 방법 (0) | 2021.02.22 |
우커머스 체크아웃(결제) 화면에서 청구지 주소 없애기 (0) | 2020.11.19 |
Github 웹훅(webhook) php 자동배포하기 (1) | 2020.08.08 |
아파치 가상호스트 서버 설정 SSL (0) | 2020.05.09 |
댓글