Here is how you can make Windows send email notifications when a user logs into a computer.

Make Windows Send Email Notifications on User Login

To make Windows send email notifications when a user logs in, we are going to use a third party program called SendEmail. SendEmail is a simple, portable, and lightweight command line email program that can send emails. Download the application from the official website, and only download the version that supports TLS. Alternatively, you can also use Blat, but it doesn’t support TLS which is a requirement for almost any major email service like Gmail. Once you’ve downloaded the file, extract it to someplace like Program Files in the C drive so that other users (if you have any) cannot access it without admin privileges. In my case, I just placed it in my E drive.

Now, search for Task Scheduler in the Start menu and open it.

After opening the Task Scheduler, click on the option “Create Task” in the right pane.

The above action will open the Create Task window. Here, enter the name of the task, description, and select the “Run whether the user is logged on or not” radio button. Don’t save the task yet.

Now, navigate to the Triggers tab and click on the “New” button appearing at the bottom of the window to create a new trigger. In the “New Trigger” window select the option “At log on” from the drop-down menu next to “Begin the task,” and then make sure that the “Any user” radio button has been selected. Once you are done, click on the “Ok” button to save the changes.

Now, navigate to the “Actions” tab, and click on the “New” button to add a new action. In the “New Action” window, enter the SendEmail application path under the “Program or Script” field, and then add the below command as the arguments in the “Add arguments” field. While adding, don’t forget to replace “yourEmail@gmail.com” with your actual email address and PASSWORD with your actual email account password. If you want to you can also edit the email subject [-u] and the message part [-m]. Note: if you are using other email services, then you also have to change the SMTP server address and the port number. Here is what the command line options actually mean.

-f – From email address -t – To email address -xu – Username -xp – Email account password -s – SMTP server address with port number -u – Email subject -m – Email body

Once you are done with the changes, click on the “Ok” button to save the changes.

This is how it looks after adding the said action to the task.

If you are adding this task to a laptop or something of that sort then you might want to uncheck the “Start the task only if the computer is on AC power” checkbox so that the task can run even when the system is running on battery. Once you are done with everything, just click on the “Ok” button to complete the procedure.

If you want to test the task, simply select the task in the middle pane of the Task Scheduler, and then click on the “Run” button, and this should send the email.

That’s all there is to do. Every time a user logs into the system, you will receive an email notification (provided that your system is connected to the Internet).

Do comment below sharing your thoughts and experiences about using the above method to receive email notifications when someone logs into your system.