Skip to main content

Posts

Showing posts from March, 2013

Featured Post

How to create customizable products in Shopify for Free (No coding!)

Creating customizable products in your Shopify store not only increase your customer satisfaction, it also increases your conversion rate.  Here is a method to add custom options for your Shopify product and convert it into personalized product - Go to Shopify store page and search for "Advanced Product Customizer" app or you can directly the the Shopify app page by clicking on this link Advanced Product Customizer . Install  Advanced Product Customizer  app for free in your Shopify store  From the application dashboard, enable to app embed block to complete the installation process Click "Product Custom Options"  From the Shopify products list, select the product on which you want to add custom options. Advanced Product Customizer  offers Image Swatch, Color Swatch, Text box, File Upload, Radio, Checkbox, Date Picker and more. Here is the a demo video for adding custom option for a Shopify product -

Send email using C# - details

Here are the details for the classes and properties used in my previous post: Simple Mail Transfer Protocol is an Internet standard for email transmission across IP networks. System.Net.Mail: It is namespace contains classes used to send e-mail to a Simple Mail Transfer Protocol server for delivery. In the previous post,  following two classes of System.Net.Mail are used: MailMessage - represents the contents of mail  message. SmtpClient - transmit email to the SMTP host that you designate for mail delivery. Note: We can also use "Attachment class" to create mail attachment. Details about properties and functions of MailMessage class which are used in our program: MailMessage.From - Gets or Sets the from address for current email message MailMessage.Subject - Gets or Sets the subject line for current email message MailMessage.Body - Gets or Sets the message body Mail.To - Gets the address collection that contains the recipients of current emai...

Send email using C#

In my previous post I wrote about sticky notes type application. By using that application a user is able to take small notes. As soon as user closes the notes, the application saves the user notes. So next time when user again launches the application, then user is provided with his notes. Now I am adding one more functionality to this application. By using this functionality user will be able to send his notes to a specified email.  To implement this functionality we need to add following libraries in the project: using System.Net.Mail using System.Net.Mime Add a link label at the bottom of the form. On the Click event of link label write the logic for sending email.  Here is the code snippets:             SmtpClient SmtpServer = new SmtpClient();  SmtpServer.Credentials = new System.Net.NetworkCredential("xyz@gmail.com", "xyz");             SmtpServer.Port = 587...