개발자의 끄적끄적

[php] php mailer gmail html 형식 전송하는 방법 본문

개발/php

[php] php mailer gmail html 형식 전송하는 방법

효벨 2021. 11. 4. 02:00
728x90
반응형

[php] php mailer gmail html 형식 전송하는 방법

 

 

php 에서

 

php mailer 를 이용하여

 

gmail 을 발송하다 보면

 

본문내용이 텍스트가 아닌

 

html 형식으로 작성해야하는 경우가 있습니다.

 

그럴때는 아래와 같이 나와있는

 

body 를

$mail->body = "content";

 

MsgHTML 로 변경한 뒤

 

IsHTML 을 true 로 설정하면 됩니다.

$mail->MsgHTML($html);
$mail->IsHTML (true);  

 

참고들 하세요!

반응형
Comments