main: don't set content-type header

This commit is contained in:
Dawid Dziurla 2020-03-24 14:03:35 +01:00
parent 09f36a9696
commit f2e1b7650c
No known key found for this signature in database
GPG Key ID: 7B6D8368172E9B0B

23
main.js
View File

@ -23,22 +23,15 @@ async function main() {
const from = core.getInput("from", { required: true }) const from = core.getInput("from", { required: true })
const content_type = core.getInput("content_type", { required: true }) const content_type = core.getInput("content_type", { required: true })
const transport = nodemailer.createTransport( const transport = nodemailer.createTransport({
{ host: server_address,
host: server_address, port: server_port,
port: server_port, secure: server_port == "465",
secure: server_port == "465", auth: {
auth: { user: username,
user: username, pass: password,
pass: password,
}
},
{
headers: {
"Content-Type": content_type
}
} }
) })
const info = await transport.sendMail({ const info = await transport.sendMail({
from: `"${from}" <${username}>`, from: `"${from}" <${username}>`,