![]() |
MK Frank R 2/16/2018 |
Here's a clip from my code. //------------------------------------------------------------------------------------------------------------------------ // Send the email //------------------------------------------------------------------------------------------------------------------------ XVar EmailStatus; MVCFunctions.runner_mail(new XVar("to", ToAddresses, "subject", EmailSubject, "htmlbody", EmailBody, "from", FromAddress)); |
T
|
Tim 2/16/2018 |
Just for some more examples for you, here is one that I do. You can see that I build the HTML message with a combination of a field on the page, some hard-coded HTML , and some data from a master table. I also have a CC. You can do the same thing with Bcc.
|
![]() |
Admin 2/16/2018 |
ASPRunner.NET manual explains how to add CC, BCC and also how to send HTML emails: |
![]() |
swat author 2/19/2018 |
ASPRunner.NET manual explains how to add CC, BCC and also how to send HTML emails: https://xlinesoft.com/asprunnernet/docs/runner_mail_function.htm
|
![]() |
swat author 2/22/2018 |
In addition also, I am getting an value("ID") on the edit page and using this ID value I need to get email address from another table. I am getting that query as well, but how I can seperate the 4-5 email address from here to email sending function? |
![]() |
swat author 3/6/2018 |
Is it possible to get the email address from Active Directory base on the session? |