4291552b6d
Co-authored-by: Copilot <copilot@github.com>
14 lines
317 B
JavaScript
14 lines
317 B
JavaScript
import { transporter } from "./transporter.js";
|
|
|
|
export async function sendMail({ to, subject, text, html }) {
|
|
const info = await transporter.sendMail({
|
|
from: '"Ausleihsystem" <noreply@mcs-medien.de>',
|
|
to,
|
|
subject,
|
|
text,
|
|
html,
|
|
});
|
|
console.log("Mail sent:", info.messageId);
|
|
return info;
|
|
}
|