Skip to content

Commit 4e16942

Browse files
authored
Update Service.ps1
Added note about Reply-To as it does not work at the moment.
1 parent 0bc5b91 commit 4e16942

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Service_SMTP2Go/Service.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ $service = Get-Service -Name $Service_Name_Value -ErrorAction SilentlyContinue
1818
################################################
1919
$From = "<Email Here>"
2020
$Recipients = "<Email Here>"
21+
# Reply-to is not currently enabled, and is not currently functioning.
22+
# Please do a pull request if you get it working. :P
2123
$ReplyTo = "<Email Here>"
2224

2325
################################################
@@ -130,4 +132,4 @@ if ($Service_Status_Value -eq "Running") {
130132
} else {
131133
Send-APIEmail -counter $counter -api_key $api_key -Recipients $Recipients -From $From -template_id $template_id -Service_Name_Value $Service_Name_Value -Service_Status_Value $Service_Status_Value -error_output_value $error_output_value -Pre_Service_Status_Value $Pre_Service_Status_Value -hostname $hostname
132134
Start-Service_Status -Service $service
133-
}
135+
}

0 commit comments

Comments
 (0)