WebPublisher/HTML 마크업
[HTML] a 태그로 mail 연결 시 메일 제목, 참조 메일 주소 설정하기
amanda
2024. 8. 12. 13:15
a 태그의 mail to에 메일 주소, 메일 제목, 참조 메일 주소 설정하는 방법
<a href=“mailto:[메일주소]?subject=[메일제목]&cc=[참조메일주소]”>
send
</a>
메일 제목을 설정하지 않아도 되고 참조 메일 주소가 여러 개인 경우
<a href=“mailto:[메일주소]?cc=[참조메일주소1];[참조메일주소2]”>
send
</a>
예시)
<a href="mailto:email@example.com?subject=[Help]%20Base Leisure&cc=email2@example.com;email3@example.com">Contact Email</a>
*참고
https://stackoverflow.com/questions/26509787/mailto-with-multiple-cc-addresses