Skip to content

Instantly share code, notes, and snippets.

@TheAdriansher
Last active June 10, 2025 23:04
Show Gist options
  • Save TheAdriansher/c7bb06d50059628e8f7a8d98eee5f1fa to your computer and use it in GitHub Desktop.
Save TheAdriansher/c7bb06d50059628e8f7a8d98eee5f1fa to your computer and use it in GitHub Desktop.
# Crear objeto Outlook
$outlook = New-Object -ComObject Outlook.Application
$mail = $outlook.CreateItem(0) # 0 = olMailItem
# Configurar correo con varios destinatarios separados por punto y coma
$mail.To = "aleon@tecnetone.com"
$mail.Subject = "Chilaquiles Gratis"
$mail.Body = "Soy Adan y debo unos chilaquiles con una coca"
# Enviar correo
$mail.Send()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment