You can use :
First method
➡️ This will open a new blank email ready to be written by the user :
sysutils.shellexec("open", "mailto:email@server.com")
Second method
➡️ This method uses COM automation to send an email silently with the current mail account in Outlook :
local outlook = sys.COM("Outlook.Application")
local mail = outlook:CreateItem(0) -- olMailItem constant (zero)
mail.To = "email@server.com"
mail.Subject = "Silent Email"
mail.Body = "This is a test email sent silently using Outlook COM."
mail:Send()