import { Modules } from "@medusajs/framework/utils"// Inside an API route, workflow, or subscriberconst notificationService = container.resolve(Modules.NOTIFICATION)await notificationService.createNotifications({ to: "[email protected]", channel: "email", template: "order-confirmation", // ℹ️ This is a mandatory field for Medusa, but not used inside the Nodemailer provider content: { subject: "Order Confirmation", text: "Thank you for your order! Your order #12345 has been confirmed." }})