Click here to Skip to main content
15,887,267 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Sir,
I am persuing mca. I am creating my poor website where I want to provide Email services (like yahoo). I want to know about inbox code(how to create a inbox and how to recieve a mail) please send me hint on my Email- [Email removed to avoid spam]
Posted
Updated 29-Aug-10 3:34am
v2
Comments
Sandeep Mewara 29-Aug-10 4:15am    
Just removed email from your question. It attracts spam otherwise. Once someone replies you here, you will recieve an email automatically.
Sammis 11-Apr-16 5:11am    
Essentially you'll need to install some email server and you'll need to create an email client for your web application. I would suggest you to take a look at this email library for C# it can help you a lot with this task, for example you can send emails with it via SMTP, receive emails with POP in C# or maybe receive emails with IMAP in C#, etc. In short you can achieve a straightforward manipulation and processing of emails with it.

1 solution

First and foremost you need to know the code of sending an email in ASP.NET. Google or search here in CP - you will find number of articles on the same.

I want to know about inbox code(how to create a inbox and how to recieve a mail)
Now, in order to have something like a email service, you need to have a storage space with you. For now, a database.

For example sake: 1 table for inbox and 1 table for Sent emails. Whenever you send an email save the entry in 'Sent mails' table and whenever a user recieves it keep an entry in 'inbox' table.
When user logs in, retrieve the data from 'Inbox' table and show that to user.

Now, try.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900