Create Email Client using C Programming

This video shows how to send an email using C programming. User don’t need third part dll or code. To code this project I used Netbeans, gcc(socket) and SMTP documentation.

I added para.h file code

Enjoy!!!
don’t forget to subscribe on youtube as more code comming.

/* 
 * File:   para.h
 * Author: rahul
 *
 * Created on 17 January, 2016, 1:36 PM
 */

#ifndef PARA_H
#define  PARA_H

#ifdef  __cplusplus
extern "C" {
#endif
    
#define TO2 "<dfgdfg@dfgdfg.com>" // pass it to MAIL FROM
#define From "Rahul<contact@dfgdfg.com>" // pass it to mail header  
#define TO "Mini<dfgdfg@gmail.com>"   // pass it to mail header
#define UID "Smtp account UID"
#define PWD "Smtp account pwd"
#define domain "domain name register on smtp server, eg sdfsdfsdf.com"

#ifdef  __cplusplus
}
#endif

#endif  /* PARA_H */

You may also like...