Skip to content
Snippets Groups Projects
Commit 0b2d0e30 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Add parameter description to SendEmail documentation.

parent 74cf1f03
No related branches found
No related tags found
No related merge requests found
......@@ -12,9 +12,9 @@ namespace AutoTx
/// <summary>
/// Send an email using the configuration values.
/// </summary>
/// <param name="recipient"></param>
/// <param name="subject"></param>
/// <param name="body"></param>
/// <param name="recipient">A full email address OR a valid ActiveDirectory account.</param>
/// <param name="subject">The subject, might be prefixed with a configurable string.</param>
/// <param name="body">The email body.</param>
public void SendEmail(string recipient, string subject, string body) {
subject = _config.EmailPrefix + subject;
if (string.IsNullOrEmpty(_config.SmtpHost)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment