SurveyVista/Services/EmailSend/EmailToSend.cs
Qaisyousuf 285eb3ce93 Update email services and improve email template in online survey project
Replaced the email service implementation and enhanced the email template design. The main email address for sending online surveys is now survey@asurvey.dk.
2025-08-05 14:22:48 +02:00

26 lines
647 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Services.EmailSend
{
public class EmailToSend
{
public string To { get; set; }
public string Subject { get; set; }
public string HtmlBody { get; set; }
public Dictionary<string, string> Headers { get; set; }
public EmailToSend(string to, string subject, string htmlBody)
{
To = to;
Subject = subject;
HtmlBody = htmlBody;
Headers = new Dictionary<string, string>(); // optional unless needed
}
}
}