Forum Discussion
magicbus
May 03, 2017Explorer II
Is this from a Windows machine? It looks like you can just send from Powershell. Here is an example you could probably modify to point to your Gmail account:
$From = "YourmailID@domain.com"
$to = "YourmailID@domain.com"
$Subject = "Some Text"
$Body = "Some Text"
$SMTP = "Your SMTP Name"
Send-MailMessage -From $from -To $to -Body $body -SMTPServer $SMTP
On edit: Sorry I misread your post. I thought you needed a program to send email, but I see you have one.
Dave
$From = "YourmailID@domain.com"
$to = "YourmailID@domain.com"
$Subject = "Some Text"
$Body = "Some Text"
$SMTP = "Your SMTP Name"
Send-MailMessage -From $from -To $to -Body $body -SMTPServer $SMTP
On edit: Sorry I misread your post. I thought you needed a program to send email, but I see you have one.
Dave
About RV Must Haves
Have a product you cannot live without? Share it with the community!8,793 PostsLatest Activity: Aug 22, 2023