This repo contains the Buying Catalogue Email Client library, which contains the functionality to send an e-mail to a recipient. The library is packaged as a NuGet package available in the Buying Catalogue MyGet feed.
Make sure the repository has a NuGet.config
file at the solution directory level with the following contents.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="MyGet" value="https://www.myget.org/F/buyingcatalogue/api/v3/index.json" />
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
Run the following commmand in the package manager console.
Install-Package NHSD.BuyingCatalogue.EmailClient
Run the following command in the package manager console.
Install-Package NHSD.BuyingCatalogue.EmailClient -Version 1.2.3
Where 1.2.3
is replaced with the relevant version number.