You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Logged messages notifications by configured levels.
61
+
- Not required, recomanded in production mode.
62
+
- Possible values:
63
+
- `host`: Required, mail server smtp domain | IPv4 | IPv6.
64
+
- `port`: Not required, `25` by default.
65
+
- `ssl`: Not required, `false` by default.
66
+
- `from`: Required if no username and password specified, email address to specify sender, if no value specified, there is used `username` value.
67
+
- `username` and `password`: Required if no `from` sender specified, mail server username/password credentials for sender account, always necessary to use together.
68
+
- `domain` - Not required, no default value. Used only as third parametter for `System.Net.NetworkCredential` if presented.
69
+
- `to`: Required, single recepient email adress or multiple adresses separated by semicolon `;`.
70
+
- `priority`: Not required, possible values: `low` | `normal` | `high` (`normal` by defaut).
71
+
- `timeout`: Not required, smtp server timeout specified in miliseconds, `10000` by default (10 seconds).
72
+
- `background`: Not required at all. Default value is `true` to send all notifications in background thread.
73
+
Use `false` value only to debug email sending.
74
+
-->
75
+
<addkey="Desharp:NotifySettings"value="{
76
+
host: 'smtp.company.com',
77
+
port: 587,
78
+
ssl: true,
79
+
user: 'noreply@company.com',
80
+
password: 'your-secret-password',
81
+
from: 'noreply@company.com',
82
+
to: 'your.name@gmail.com',
83
+
priority: 'high',
84
+
timeout: 30000
85
+
}" />
86
+
87
+
<!--
88
+
Web debug bar panels.
89
+
- Not required, recomanded.
90
+
- Full class names separated by comma `,`.
91
+
- Panel class has to implement public interface: `Desharp.Panels.IPanel`
92
+
- Panel class could implement interface: `Desharp.Panels.ISessionPanel`,
93
+
where are method called when session is is read and written every request.
94
+
- There are always enabled build-in panels for execution time, dumps and exceptions.
95
+
- Build-in panels you can optionally use:
96
+
- `Desharp.Panels.SystemInfo` - to display most important request info
97
+
- `Desharp.Panels.Session` - to display basic session configuration and values
98
+
- `Desharp.Panels.Routing` - to display matched MVC routes (still in TODO state)
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
0 commit comments