|
|
|
|||||||
|
ICT-Hotlist TopicPapercut SMTP, the Simple Desktop Email ReceiverAre you developing or testing an application that sends e-mails, but you do not want to send them to a mail server? You do not want to hassle with referencing to a physical SMTP-server? If you just want to check whether the application can send e-mails and the e-mail has the correct format, then Papercut SMTP (free) by Jaben Cargman is the application for you.You can download Papercut SMTP here Sending an e-mail with Powershell
# This PowerShell script sends an e-mail to the local
Warning: A Windows domain name can not contain an underscore "_"
according to these
standards. The underscore is used in these examples as a
spam counter measure.# Papercut SMTP e-mail test program # (C)Copyrights 2016 - 2024 vanSoest.it by J. van Soest. $mailFrom = "helpdesk@van_Soest.it" $MailTo = "alerts@van_Soest.it" $mailSubject = "Testmail from PowerShell" $mailBody = '<html>' $mailbody = $mailBody + '<body>' $mailbody = $mailBody + ' <img src="http://www.vansoest.it/images/vansoest.gif"><br />' $mailbody = $mailBody + ' This is a testmail from PowerShell to test the workings of Papercut,' $mailbody = $mailBody + ' the free e-mail test program.<br />' $mailbody = $mailBody + ' Kind regards,<br /> Johan van Soest' $mailbody = $mailBody + '</body>' $mailbody = $mailBody + '</html>' $PSEmailServer = "localhost" Send-MailMessage -From $mailFrom -Subject $mailSubject -To $MailTo -Body $mailBody -BodyAsHtml Script Requires PowerShell 3.0 or betterPowerShell 3.0 is integrated with Windows 8 and with Windows Server 2012. Microsoft has also made PowerShell 3.0 available for Windows 7 with Service Pack 1, for Windows Server 2008 with Service Pack 1, and for Windows Server 2008 R2 with Service Pack 1
You may vote your opinion about this article:
Scripts and programming examples disclaimerUnless stated otherwise, the script sources and programming examples provided are copyrighted freeware. You may modify them, as long as a reference to the original code and hyperlink to the source page is included in the modified code and documentation. However, it is not allowed to publish (copies of) scripts and programming examples on your own site, blog, vlog, or distribute them on paper or any other medium, without prior written consent.Many of the techniques used in these scripts, including but not limited to modifying the registry or system files and settings, impose a risk of rendering the Operating System inoperable and loss of data. Make sure you have verified full backups and the associated restore software available before running any script or programming example. Use these scripts and programming examples entirely at your own risk. All liability claims against the author in relation to material or non-material losses caused by the use, misuse or non-use of the information provided, or the use of incorrect or incomplete information, are excluded. All content is subject to change and provided without obligation. |