You should know that there is something know as a
variable in programming. Which can be filled with any value that your application (or more specifically "
you") want to use. So for example, if you use the
WebMail
class to send the email, then the following code would be used,
WebMail.Send(to: client,
subject: subjectOfMessage,
body: whatToSend);
You can fill the above variables, to send the email from which so ever account to which so ever recipient using which so ever SMTP server on which so ever event (Sorry for a lot of "
which-so-ever"s). You can fill the values for your organisation or for your particular client;
WebMail
would send the email with that data. For more on sending emails in ASP.NET, you can read
this article[
^] of mine.