https://github.com/cake-contrib/cake.email
Cake Addin that exends Cake with ability to send email.
https://github.com/cake-contrib/cake.email
cake-addin cake-build
Last synced: 4 months ago
JSON representation
Cake Addin that exends Cake with ability to send email.
- Host: GitHub
- URL: https://github.com/cake-contrib/cake.email
- Owner: cake-contrib
- Created: 2016-10-16T18:20:49.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2024-11-17T18:07:35.000Z (5 months ago)
- Last Synced: 2024-12-12T23:16:02.728Z (5 months ago)
- Topics: cake-addin, cake-build
- Language: C#
- Homepage: https://cake-contrib.github.io/Cake.Email/docs/
- Size: 2.12 MB
- Stars: 3
- Watchers: 6
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cake.Email
[](http://cake-contrib.mit-license.org)
Cake.Email is an Addin for [Cake](http://cakebuild.net/) which allows sending of email from your build scripts.
## Usage
First, include a reference to this addin in your script like this (of course, replace `x.y.z` with the latest version available on [NuGet](https://www.nuget.org/packages/Cake.Email)):
```csharp
#addin nuget:?package=Cake.Email&version=x.y.z&loaddependencies=true
```Second, we highly recommend that you add the following 'using' statement in your script. Technically, this is not necessary, but it simplifies dealing with attachements:
```csharp
using Cake.Email.Common;
```## Information
| |Stable|Pre-release|
|:--:|:--:|:--:|
|GitHub Release|-|[](https://github.com/cake-contrib/Cake.Email/releases/latest)|
|Package|[](https://www.nuget.org/packages/Cake.Email)|[](http://myget.org/feed/cake-contrib/package/nuget/Cake.Email)|## Build Status
|Develop|Master|
|:--:|:--:|
|[](https://ci.appveyor.com/project/cakecontrib/cake-email/branch/develop)|[](https://ci.appveyor.com/project/cakecontrib/cake-email/branch/master)|## Code Coverage
[](https://coveralls.io/github/cake-contrib/Cake.Email)
## Quick Links
- [Documentation](https://cake-contrib.github.io/Cake.Email/)
## Chat Room
Please do not hesitate to reach out in the [GitHub discussions](https://github.com/cake-build/cake/discussions/categories/extension-q-a) if you have any issues using this addin.