Updated email functionality

This commit is contained in:
Khwezi Mngoma
2026-05-06 11:14:32 +02:00
parent 6ca87413d6
commit c6ce9c85df
4 changed files with 20 additions and 16 deletions
+5 -1
View File
@@ -5,21 +5,25 @@ public sealed class EmailEnquiry
[Required]
[MinLength(2)]
[MaxLength(255)]
[Display(Name = "Full Name")]
public string? FullName { get; set; }
[Required]
[EmailAddress]
[MinLength(20)]
[MinLength(5)]
[MaxLength(255)]
[Display(Name = "Email Address")]
public string? EmailAddress { get; set; }
[Required]
[MinLength(2)]
[MaxLength(255)]
[Display(Name = "Subject")]
public string? EmailSubject { get; set; }
[Required]
[MinLength(2)]
[MaxLength(2000)]
[Display(Name = "Message")]
public string? Message { get; set; }
}