Hello, Michael.
Nothing is greater for us than getting this kind of feedback. Thank you, and we hope you keep using our Cassini. It's also special for us, because you evidently work on radio treatment of cancer, and some of us here know exactly how important that is.
Regarding DNN sending email messages, we'd have to say we don't have solid experience with DNN, but as long as DNN Events module is using standard ASP.NET 2.0 web.config settings for SMPT server - you should be able to setup email notifications relatively easily. Here's how web.config with SMTP settings usually looks like:
Code:<configuration>
<!-- Add the email settings to the <system.net> element -->
<system.net>
<mailSettings>
<smtp>
<network
host="smtpServerHostname" <!-- network address of Exchange server goes here if you use Exchange -->
port="portNumber" <!-- usually value is 25 unless SMTP server is running on non-standard port -->
userName="username"
password="password" />
</smtp>
</mailSettings>
</system.net>
<system.web>
...
</system.web>
</configuration>
If you already have SMTP server, Exchange or other, up & running - you should be able to get email notifictions work farily quickly.
Please modify DNN's web.config and let us know if you were able to resolve this issue.
Please also take a look at
this article walking through the process of sending emails from ASP.NET 2.0 applications.
Best regards,
UltiDev Team.
Please donate at
http://www.ultidev.com/products/Donate.aspx to help us improve our products.