谷歌应用脚本(Google Apps Script)是一种基于JavaScript的脚本语言,它允许你为Google Workspace(如Gmail、Docs、Sheets等)创建自定义功能。要在自动化电子邮件中添加样式,你可以使用HTML和CSS来格式化邮件内容。
style
属性来添加样式。<head>
部分使用<style>
标签来定义样式。以下是一个简单的示例,展示如何在Google Apps Script中创建一封带有样式的自动化电子邮件:
function sendStyledEmail() {
var recipient = 'recipient@example.com';
var subject = 'Styled Email Example';
var body = `
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
h1 {
color: #333;
}
p {
color: #666;
}
</style>
</head>
<body>
<h1>Hello!</h1>
<p>This is a styled email example.</p>
</body>
</html>
`;
GmailApp.sendEmail(recipient, subject, '', { htmlBody: body });
}
通过以上方法,你可以轻松地在Google Apps Script中添加样式到你的自动化电子邮件中。
领取专属 10元无门槛券
手把手带您无忧上云