vote up 3 vote down star
2

I'm trying to figure out how to use PowerShell V2's Send-MailMessage with gmail.

Here's what I have so far.

$ss = new-object Security.SecureString
foreach ($ch in "password".ToCharArray())
{
    $ss.AppendChar($ch)
}
$cred = new-object Management.Automation.PSCredential "uid@domain.com", $ss
Send-MailMessage    -SmtpServer smtp.gmail.com -UseSsl -Credential $cred -Body...

I get the following error

Send-MailMessage : The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required. Learn
 more at                              
At foo.ps1:18 char:21
+     Send-MailMessage <<<<      `
    + CategoryInfo          : InvalidOperation: (System.Net.Mail.SmtpClient:SmtpClient) [Send-MailMessage], SmtpException
    + FullyQualifiedErrorId : SmtpException,Microsoft.PowerShell.Commands.SendMailMessage

Am I doing something wrong, or is Send-MailMessage not fully baked yet (I'm on CTP 3)?

Edit - two additional restrictions

  1. I want this to be non-interactive, so get-credential won't work
  2. The user account isn't on the gmail domain, but an google apps registered domain
flag

For what it's worth I get the same error and it looks like everything is ok. I'll play around some more with it. – EBGreen Aug 9 at 23:43
Well now you're just being picky. :P – EBGreen Aug 10 at 0:44
I think the way you are creating the credential should be ok. I have only authenticated directly to gmail before not through an apps domain, so not sure I'll be much help now. Sorry. – EBGreen Aug 10 at 0:49
Curious - uid works, but uid@nongmail.com doesn't – Scott Weinstein Aug 10 at 11:37

2 Answers

vote up 0 vote down

I haven't used PowerShell V2 send-mailmessage, but I have used System.Net.Mail.SMTPClient class in V1 to send messages to a gmail account for demo purposes. This might be overkill but run an smtp server on my Vista laptop see this link, if you're in an enterprise you will already have a mail rely server and this step isn't necessary. Having an smtp server I'm able to send email to my gmail account with the following code:

$smtpmail = [System.Net.Mail.SMTPClient]("127.0.0.1")
$smtpmail.Send("myacct@gmail.com", "myacct@gmail.com", "Test Message", "Message via local smtp")
link|flag
vote up 4 vote down

I'm not sure you can change port numbers with Send-MailMessage since gmail works on port 587. Anyway, here's how to send email through gmail with .NET SmtpClient:

$SmtpClient = new-object system.net.mail.smtpClient 
$smtpclient.Host = 'smtp.gmail.com'
$smtpclient.Port = 587
$smtpclient.EnableSsl = $true
$smtpClient.Credentials = [Net.NetworkCredential](Get-Credential GmailUserID) 
$smtpclient.Send('GmailUserID@gmail.com','yourself@somewhere.com','test subject', 'test message')
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.