Mail box
-
I want to create a application in which i can send a mail and receive amail. i want to know that waht should i do for storing the dat.. should i store the mail message in to sql database. wher does it store. just tell mw where it store..
-
I want to create a application in which i can send a mail and receive amail. i want to know that waht should i do for storing the dat.. should i store the mail message in to sql database. wher does it store. just tell mw where it store..
-
I want to create a application in which i can send a mail and receive amail. i want to know that waht should i do for storing the dat.. should i store the mail message in to sql database. wher does it store. just tell mw where it store..
Are you going to create POP3/ICMP application ? Or you want to use the existing mail server and store mails to your location programmatically ?
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
I want to create a application in which i can send a mail and receive amail. i want to know that waht should i do for storing the dat.. should i store the mail message in to sql database. wher does it store. just tell mw where it store..
deepikadurge wrote:
I want to create a application in which i can send a mail and receive amail.
You have to create one mail server rather than thinking about using DB. What is your business requirments ?
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
deepikadurge wrote:
I want to create a application in which i can send a mail and receive amail.
You have to create one mail server rather than thinking about using DB. What is your business requirments ?
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
I am dng this for my knowledge .. can i create a mail server on my machine and how
-
Are you going to create POP3/ICMP application ? Or you want to use the existing mail server and store mails to your location programmatically ?
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascripti want to craete an web app on my machine .. i want to store it in mail server.. but i cnt know the process of saving mail in mail server.. waht is the location for that..
-
Are you going to create POP3/ICMP application ? Or you want to use the existing mail server and store mails to your location programmatically ?
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using JavascriptI have writen the code for mail send.. it's running .. but i dnt knw where it is storing in pc.. how can i read the mail..
-
i want to craete an web app on my machine .. i want to store it in mail server.. but i cnt know the process of saving mail in mail server.. waht is the location for that..
If you have configured your smtp server you will have specified the path where mails should be stored . Open IIS Console. Right click on "Default SMTP Virtual Server" - > Go to Properties In the Messages tab you will find the directory path. Check the path you will find the mails. By Default it will be stored in
C:\Inetpub\mailroot
You can also find the actual mailing path by right clicking on the domain you are using as mail server. Just Right click on Domain and find Drop MailBox. Cheers. :-DAbhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
If you have configured your smtp server you will have specified the path where mails should be stored . Open IIS Console. Right click on "Default SMTP Virtual Server" - > Go to Properties In the Messages tab you will find the directory path. Check the path you will find the mails. By Default it will be stored in
C:\Inetpub\mailroot
You can also find the actual mailing path by right clicking on the domain you are using as mail server. Just Right click on Domain and find Drop MailBox. Cheers. :-DAbhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using JavascriptThanks..