You can set up a schedule task that will kick off once a computer starts.
You can compile the following code into an exe.
Code:
System.Net.Mail.MailMessage lmmMessage = new System.Net.Mail.MailMessage(From, To, Subject, Body);
System.Net.Mail.SmtpClient lnmSMTP = new System.Net.Mail.SmtpClient(MailServer);
lnmSMTP.Send(lmmMessage);
You just need to provide the, From, To, Subject, Body and MailServer data.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.