0
에서 작동하지 않는, 임베디드 CSS가 지원됩니다 https://developers.google.com/gmail/design/css포함 된 CSS는 최신의 Gmail 문서에 따르면 Gmail의
는 그러나, 나는 파일 css.html
<html>
<head>
<style>
.colored {
color: blue;
}
#body {
font-size: 14px;
}
</style>
</head>
<body>
<div id='body'>
<p>Hi Pierce,</p>
<p class='colored'>This text is blue.</p=>
<p>Jerry</p>
</div>
</body>
</html>
에 자신의 예를 복사하여 명령 줄을 통해 보내
cat css.html | mail -s "$(echo -e "Test\nContent-Type: text/html")" [email protected]
Gmail 웹 사이트 또는 Gmail 앱에 상관없이 둘 다 작동하지 않으며 일반 텍스트로 표시됩니다. 어떤 생각?