Saturday, March 28, 2020
Sunday, March 22, 2020
Sending email via Microsoft PowerShell
I rarely use PowerShell, but this is a very useful script for testing SMTP.
$EmailFrom = “yourgmailadress@gmail.com”
$EmailTo = “destination@somedomain.com”
$Subject = “The subject of your email”
$Body = “What do you want your email to say”
$SMTPServer = “smtp.gmail.com”
$SMTPClient = New-Object Net.Mail.SmtpClient($SmtpServer, 587)
$SMTPClient.EnableSsl = $true
$SMTPClient.Credentials = New-Object System.Net.NetworkCredential(“usr”, “pass”);
$SMTPClient.Send($EmailFrom, $EmailTo, $Subject, $Body)
Credit to the author of this over at howtogeek.com:
Monday, March 16, 2020
Good Webex Teams developer resources for chatbots:
https://blogs.cisco.com/developer/webex-teams-apis-awesome
Webex Webhooks
https://developer.webex.com/docs/api/v1/webhooks/create-a-webhook
Buttons and Cards for Bots:
https://developer.webex.com/docs/api/guides/cards
Chatbot documentation and creation:
https://developer.webex.com/docs/bots
https://blogs.cisco.com/developer/webex-teams-apis-awesome
Webex Webhooks
https://developer.webex.com/docs/api/v1/webhooks/create-a-webhook
Buttons and Cards for Bots:
https://developer.webex.com/docs/api/guides/cards
Chatbot documentation and creation:
https://developer.webex.com/docs/bots
Friday, March 13, 2020
Paessler Free tools
Currently I am testing the free tools available from Paessler to see if they can help me with troubleshooting my network.
Free tools from paessler:
https://www.paessler.com/tools
I am also interested to learn more about Test Cafe for automation of test cases:
https://testcafe.devexpress.com/Documentation/
Free tools from paessler:
https://www.paessler.com/tools
I am also interested to learn more about Test Cafe for automation of test cases:
https://testcafe.devexpress.com/Documentation/
Subscribe to:
Posts (Atom)