From d4af4d6f6ab3e79ea3456175f92459d9fb5b4e1a Mon Sep 17 00:00:00 2001 From: Oskar Berggren Date: Sat, 9 Apr 2016 20:47:37 +0200 Subject: [PATCH] server/RDSFactor.vb: Spelling/grammar fix. --- server/RDSFactor.vb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/RDSFactor.vb b/server/RDSFactor.vb index 8ac1004..6f939cb 100644 --- a/server/RDSFactor.vb +++ b/server/RDSFactor.vb @@ -253,7 +253,7 @@ Public Class RDSFactor mail.To.Add(email) mail.From = New MailAddress(SenderEmail) mail.Subject = "Token: " & passcode - mail.Body = "Subject contains the token code to login to you site" + mail.Body = "Subject contains the token code to login to the site" mail.IsBodyHtml = False Dim smtp As New SmtpClient(MailServer) @@ -261,7 +261,7 @@ Public Class RDSFactor Try smtp.Send(mail) If DEBUG = True Then - LogDebug(Now & ": Mail send to: " & email) + LogDebug(Now & ": Mail sent to: " & email) End If Return "SEND" Catch e As InvalidCastException