Generic class for mail service with attachments.
Examples avaialable for Asp.Net and Core
<system.net>
<mailSettings>
<smtp deliveryMethod="SpecifiedPickupDirectory">
<specifiedPickupDirectory
pickupDirectoryLocation="c:\maildrop" />
</smtp>
</mailSettings>
</system.net>
<system.net>
<mailSettings>
<smtp deliveryMethod="Network">
<network
host="[host]"
port="[port]"
defaultCredentials="true"
password="[password]"
userName="[username]" />
</smtp>
</mailSettings>
</system.net>
"Smtp": {
"DeliveryMethod": "SpecifiedPickupDirectory",
"PickupDirectoryLocation": "c:\\maildrop"
}