
Security News
pnpm 10.12 Introduces Global Virtual Store and Expanded Version Catalogs
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.
WP8 and WP7 SMTP client library to send emails without using the EmailComposeTask, and attach any type of file. Main Features: • connects to Microsoft Live, Gmail or to a custom SMTP mail server (SSL/TLS compatible). • supports any kind of attachment, from resource or isolated storage: pdf, mp3, wav, mp4, avi, bmp, txt, zip, jpg, etc. • sends an email without calling EmailComposeTask and does not need user intervention. • multithreaded: will not freeze/block your UI. • works on wifi and data connection. • supports international charset (Chinese). Usage scenario: //create a new MailMessage object MailMessage mailMessage = new MailMessage(); //set a Live/Hotmail or Gmail, or a custom SMTP account mailMessage.UserName= "*****@hotmail.com; mailMessage.Password = "********"; mailMessage.AccountType = AccountType.MicrosoftAccount; mailMessage.From = "myapp@mycompany.com"; //set mail data mailMessage.To = "foo@foo.com"; mailMessage.ReplyTo = "foo5@foo.com"; mailMessage.Subject = "Hello from WP"; mailMessage.Body = "I can send any type of attachment from my app now !!"; //text or HTML //attach ANY KIND of file from a resource or IsolatedStorage path mailMessage.AddAttachment("\rex\file.wav"); mailMessage.AddAttachment("\myFolder\file.mp3"); mailMessage.AddAttachment("\downloads\file.mp4"); //attach from in-memory data: mailMessage.AddAttachment(Encoding.UTF8.GetBytes("yesssss".ToCharArray()), "memoryfile.txt"); //set message event handlers mailMessage.Error += mailMessage_Error; mailMessage.MailSent += mailMessage_MailSent; mailMessage.Progress += mailMessage_Progress; //send email (async) mailMessage.SendMail(); Support: support@venetasoft.it
FAQs
WP8 and WP7 SMTP client library to send emails without using the EmailComposeTask, and attach any type of file. Main Features: • connects to Microsoft Live, Gmail or to a custom SMTP mail server (SSL/TLS compatible). • supports any kind of attachment, from resource or isolated storage: pdf, mp3, wav, mp4, avi, bmp, txt, zip, jpg, etc. • sends an email without calling EmailComposeTask and does not need user intervention. • multithreaded: will not freeze/block your UI. • works on wifi and data connection. • supports international charset (Chinese). Usage scenario: //create a new MailMessage object MailMessage mailMessage = new MailMessage(); //set a Live/Hotmail or Gmail, or a custom SMTP account mailMessage.UserName= "*****@hotmail.com; mailMessage.Password = "********"; mailMessage.AccountType = AccountType.MicrosoftAccount; mailMessage.From = "myapp@mycompany.com"; //set mail data mailMessage.To = "foo@foo.com"; mailMessage.ReplyTo = "foo5@foo.com"; mailMessage.Subject = "Hello from WP"; mailMessage.Body = "I can send any type of attachment from my app now !!"; //text or HTML //attach ANY KIND of file from a resource or IsolatedStorage path mailMessage.AddAttachment("\rex\file.wav"); mailMessage.AddAttachment("\myFolder\file.mp3"); mailMessage.AddAttachment("\downloads\file.mp4"); //attach from in-memory data: mailMessage.AddAttachment(Encoding.UTF8.GetBytes("yesssss".ToCharArray()), "memoryfile.txt"); //set message event handlers mailMessage.Error += mailMessage_Error; mailMessage.MailSent += mailMessage_MailSent; mailMessage.Progress += mailMessage_Progress; //send email (async) mailMessage.SendMail(); Support: support@venetasoft.it
We found that mailmessage demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.
Security News
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.