https://github.com/luissilva1044894/tempmailapi
Unofficial wrapper for TempMail, written in C#/.Net.
https://github.com/luissilva1044894/tempmailapi
api-wrapper csharp disposable-email disposable-emails library temp-mail wrapper
Last synced: 7 months ago
JSON representation
Unofficial wrapper for TempMail, written in C#/.Net.
- Host: GitHub
- URL: https://github.com/luissilva1044894/tempmailapi
- Owner: luissilva1044894
- License: mit
- Created: 2018-07-01T14:41:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-01T14:44:14.000Z (over 7 years ago)
- Last Synced: 2025-01-12T11:48:36.128Z (9 months ago)
- Topics: api-wrapper, csharp, disposable-email, disposable-emails, library, temp-mail, wrapper
- Language: C#
- Size: 11.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# temp-mail-API
> Temp mail is a service which lets you use anonymous emails for free!**temp-mail-api** is C#-based wrapper for [TempMail](https://temp-mail.org) (Version 0.1 based on [temp-mail-API](https://github.com/RyuzakiH/temp-mail-API))
# Usage
```CSharp
var tempMail = new TempMail ();// To get Mailbox
var mails = temp.GetEmailsReceived ();
for (int i 0; i < mails.Count; i ++) {
mails [i].Delete ();
}// To delete current E-mail
temp.Delete ();// To generate a new E-mail
temp.Change (user, domain);
```