IMAP, POP3 और SMTP के लिए ओपन सोर्स .NET लाइब्रेरी

संलग्नक के साथ संदेश उत्पन्न करने के लिए नि:शुल्क C# .NET पुस्तकालय, PGP/MIME के साथ संदेशों को एन्क्रिप्ट/डिक्रिप्ट करें। 

MailKit IMAP, POP3 और SMTP के लिए एक ओपन सोर्स .NET लाइब्रेरी है। यह एक क्रॉस-प्लेटफ़ॉर्म मेल क्लाइंट लाइब्रेरी है जिसे माइमकिट के शीर्ष पर बनाया गया है। परियोजना का उद्देश्य एक मजबूत, पूरी तरह से चित्रित, और आरएफसी-अनुपालन एसएमटीपी, पीओपी 3 और आईएमएपी क्लाइंट कार्यान्वयन प्रदान करना है।

एपीआई SASL प्रमाणीकरण, प्रॉक्सी समर्थन, SMTP क्लाइंट, POP3 क्लाइंट, IMAP4 क्लाइंट, क्लाइंट-साइड सॉर्टिंग और संदेशों के थ्रेडिंग से संबंधित कई महत्वपूर्ण सुविधाओं का समर्थन करता है।

Previous Next

MailKit के साथ शुरुआत करना

MailKit को स्थापित करने का सबसे आसान तरीका NuGet के माध्यम से है। विजुअल स्टूडियो के पैकेज मैनेजर कंसोल से इसका उपयोग करने के लिए, कृपया निम्नलिखित कमांड दर्ज करें।

NuGet के माध्यम से मेलकिट स्थापित करें

Install-Package MailKit  

गिटहब के माध्यम से मेलकिट स्थापित करें 

git clone --recursive https://github.com/jstedfast/MailKit.git 

.NET . के माध्यम से नए संदेश बनाएं

ओपन सोर्स एपीआई मेलकिट लाइब्रेरी सॉफ्टवेयर डेवलपर्स को कुछ सरल कमांड के साथ एमआईएमई संदेश बनाने में सक्षम बनाती है। टेक्स्टपार्ट एक टेक्स्ट मीडिया प्रकार के साथ लीफ-नोड MIME भाग है। टेक्स्टपार्ट कंस्ट्रक्टर के लिए पहला तर्क मीडिया-उपप्रकार को निर्दिष्ट करता है, इस मामले में, सादा। एक अन्य मीडिया उपप्रकार जिससे आप शायद परिचित हैं, वह है HTML उपप्रकार। MIME भाग की दोनों स्ट्रिंग सामग्री को प्राप्त करने और सेट करने का सबसे आसान तरीका टेक्स्ट गुण है।

ओपन सोर्स एपीआई मेलकिट लाइब्रेरी सॉफ्टवेयर डेवलपर्स को कुछ सरल कमांड के साथ MIME संदेश बनाने में सक्षम बनाती है। टेक्स्टपार्ट एक टेक्स्ट मीडिया-प्रकार के साथ लीफ-नोड MIME भाग है। टेक्स्टपार्ट कंस्ट्रक्टर के लिए पहला तर्क मीडिया-उपप्रकार को निर्दिष्ट करता है, इस मामले में, सादा। एक अन्य मीडिया उपप्रकार जिससे आप शायद परिचित हैं, वह है HTML उपप्रकार। MIME भाग की स्ट्रिंग सामग्री प्राप्त करने और सेट करने दोनों के लिए सबसे आसान तरीका टेक्स्ट गुण है।

सी # का उपयोग करके संदेश उत्पन्न करें और भेजें

var message = new MimeMessage();
message.From.Add(new MailboxAddress("fred", "This email address is being protected from spam-bots. You need JavaScript enabled to view it."));
message.To.Add(new MailboxAddress("frans", "This email address is being protected from spam-bots. You need JavaScript enabled to view it."));
message.Subject = "FileFormat ";
message.Body = new TextPart("plain")
{
  Text = "File Format Developer Guide"
};
using (var client = new SmtpClient())
{
  // For demo-purposes,
  client.ServerCertificateValidationCallback = (s, c, h, e) => true;
  client.Connect("smtp.test.com", 587, false);
  // Note: only needed if the SMTP server requires authentication
  client.Authenticate("frans", "password");
  client.Send(message);
  client.Disconnect(true);
}                  

.NET API का उपयोग करके अनुलग्नकों के साथ संदेश उत्पन्न करें

MailKit API .NET अनुप्रयोगों के अंदर अनुलग्नकों के साथ एक संदेश उत्पन्न करने के लिए सुविधाएँ प्रदान करता है। अटैचमेंट किसी भी अन्य माइमपार्ट की तरह ही होते हैं; मुख्य अंतर यह है कि उनमें इनलाइन के बजाय अनुलग्नक का सामग्री-स्वभाव शीर्षलेख धारण मूल्य होता है या कोई सामग्री-विस्थापन शीर्षलेख बिल्कुल नहीं होता है। टेक्स्ट/एचटीएमएल और संदेश का टेक्स्ट/सादा संस्करण दोनों भेजने के लिए, आपको प्रत्येक भाग के लिए टेक्स्टपार्ट बनाना होगा और फिर उन्हें मल्टीपार्ट/विकल्प में जोड़ना होगा।

सी # के माध्यम से अनुलग्नकों के साथ संदेश बनाएं


var message = new MimeMessage ();
message.From.Add (new MailboxAddress ("Joey", "joey@friends.com"));
message.To.Add (new MailboxAddress ("Alice", "alice@wonderland.com"));
message.Subject = "How you doin?";
// create our message text, just like before (except don't set it as the message.Body)
var body = new TextPart ("plain") {
  Text = @"Hey Alice,
What are you up to this weekend? Monica is throwing one of her parties on
Saturday and I was hoping you could make it.
Will you be my +1?
-- Joey
"
};
// create an image attachment for the file located at path
var attachment = new MimePart ("image", "gif") {
  Content = new MimeContent (File.OpenRead (path), ContentEncoding.Default),
  ContentDisposition = new ContentDisposition (ContentDisposition.Attachment),
  ContentTransferEncoding = ContentEncoding.Base64,
  FileName = Path.GetFileName (path)
};
// now create the multipart/mixed container to hold the message text and the
// image attachment
var multipart = new Multipart ("mixed");
multipart.Add (body);
multipart.Add (attachment);
// now set the multipart/mixed as the message body
message.Body = multipart;
 

पीजीपी/एमआईएमई के साथ संदेशों को एन्क्रिप्ट/डिक्रिप्ट करें

MailKit पुस्तकालय .NET अनुप्रयोगों के अंदर PGP/MIME के साथ ईमेल संदेशों को एन्क्रिप्ट करने के लिए सुविधाएँ प्रदान करता है। PGP/MIME एन्क्रिप्टेड डेटा को एनकैप्सुलेट करने के लिए एक मल्टीपार्ट/एन्क्रिप्टेड माइम-प्रकार के साथ एक MIME भाग का उपयोग करता है। यदि आप किसी संदेश को एन्क्रिप्ट करना चाहते हैं, तो प्रत्येक प्राप्तकर्ता के लिए MailboxAddress के बजाय SecureMailboxAddress का उपयोग करना हमेशा एक बेहतर तरीका होता है, जो उपयोगकर्ताओं को प्रत्येक प्राप्तकर्ता की PGP कुंजी के अद्वितीय फ़िंगरप्रिंट को निर्दिष्ट करने की अनुमति देगा।

सी # के माध्यम से पीजीपी/एमआईएमई के साथ संदेशों को एन्क्रिप्ट करना


public void Encrypt (MimeMessage message)
{
  // encrypt our message body using our custom GnuPG cryptography context
  using (var ctx = new MyGnuPGContext ()) {
    // Note: this assumes that each of the recipients has a PGP key associated
    // with their email address in the user's public keyring.
    // 
    // If this is not the case, you can use SecureMailboxAddresses instead of
    // normal MailboxAddresses which would allow you to specify the fingerprint
    // of their PGP keys. You could also choose to use one of the Encrypt()
    // overloads that take a list of PgpPublicKeys.
    message.Body = MultipartEncrypted.Encrypt (ctx, message.To.Mailboxes, message.Body);
  }
}

PGP/MIME संदेशों को डिक्रिप्ट करना


public MimeEntity Decrypt (MimeMessage message)
{
  if (message.Body is MultipartEncrypted) {
    // the top-level MIME part of the message is encrypted using PGP/MIME
    var encrypted = (MultipartEncrypted) entity;
    return encrypted.Decrypt ();
  } else {
    // the top-level MIME part is not encrypted
    return message.Body;
  }
}
 हिन्दी