Skip to content

Instantly share code, notes, and snippets.

Email Follow-Up Service

Problem Statement

We have a group of sales people who have many email conversations going on at the same time with their customers. Sometimes these threads are started and then forgotten because the customer fails to reply, so we would like to improve the response rates of customers to these emails. Therefore, we would like a service which sends follow-up emails when a customer has not responded to an email from our sales people.

Solution

We would like you to create the service which sends these follow-up emails. It should:

@pavelbrylov
pavelbrylov / gist:8a0891b8175ec1bb47cf
Last active August 29, 2015 14:14
boxstarter my
$Boxstarter.RebootOk=$true # Allow reboots?
$Boxstarter.NoPassword=$false # Is this a machine with no login password?
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot
# Basic setup
Update-ExecutionPolicy Unrestricted
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Disable-InternetExplorerESC
if (Test-PendingReboot) { Invoke-Reboot }