Skip to content

Commit cf9bc88

Browse files
committed
Implemented review suggestions
1 parent b9ff9dd commit cf9bc88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ async function main() {
178178
proxy: process.env.HTTP_PROXY,
179179
});
180180

181-
const nmparam = {
181+
const messageOptions = {
182182
from: from,
183183
to: to,
184184
subject: getText(subject, false),
@@ -202,7 +202,7 @@ async function main() {
202202
let i = 1;
203203
while (true) {
204204
try {
205-
const info = await transport.sendMail(nmparam);
205+
const info = await transport.sendMail(messageOptions);
206206
break;
207207
} catch (error) {
208208
if (!error.message.includes("Try again later,")) {

0 commit comments

Comments
 (0)