KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
MailJet.NET
★ 9
Open GitHub ↗
.NET Client for MailJet
Download README (.md)
Explore Similar Repositories
vinculum
:
Vinculum
compiler-of-training
:
西南民族大学2015年春季学期秦沿海《编译原理》课程设计的Training语言的词法、语法、语义分析源代码。
rec-waveguide-FEMsolver
:
This Matlab program calculates the electromagnetic field in a 2:1 rectangular homogeneous waveguide with 2nd order FEM, and displays the electric field in TM32 mode.
rocketmq-cockpit
:
No description available.
mscrmexporttoexcel
:
XrmToolBox tool to export all records from a view
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
MailJet.NET
?
Download (.md)
# MailJet .NET (unofficial) An unofficial .NET Client for use with MailJet v3 API. [](https://travis-ci.org/AshleyMedway/MailJet.NET) [](https://gitter.im/AshleyMedway/MailJet.NET?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=body_badge) [](https://www.nuget.org/packages/MailJet.NET) Currently implemented features: * Sending Messages & Getting MessageInfo * Some account management (DNS & MetaSender) - [api doc](http://dev.mailjet.com/email-api/v3/dns/) * Contact list management (create/sub/unsub/etc.) - [api doc](http://dev.mailjet.com/email-api/v3/contactslist/) * Contact Metadata management (CRUD) - [api doc](http://dev.mailjet.com/email-api/v3/contactmetadata/) Next features will be (unless anyone raises issues otherwise): * Completing account management (Sender, MyProfile & User) - [api doc](http://dev.mailjet.com/email-api/v3/myprofile/) * Contact management - [api doc](http://dev.mailjet.com/email-api/v3/contact/) The package uses `System.Net.Mail.MailMessage` for sending outgoing mail as this hopefully allows for simple transition from using `System.Net.Mail.SmtpClient`. If you find any features of `MailMessage` have not been implemented please raise an issue. If there is a specific feature of the API you would like please create an issue or fork, develop, pull request :smiley: ###Basic Usage MailJetClient client = new MailJetClient("{PublicKey}", "{PrivateKey}"); client.SendMessage(new System.Net.Mail.MailMessage("from@email.com", "to@email.com", "subject", "email body")); For a more detailed usage you can see the [SendMail](https://github.com/AshleyMedway/MailJet.NET/blob/master/MailJet.Client.Tests/SendMail.cs) UnitTests.