Last active
June 10, 2025 23:04
-
-
Save TheAdriansher/c7bb06d50059628e8f7a8d98eee5f1fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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