PHP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingPHP Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old August 28th, 2002, 11:10 AM
KuWait KuWait is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2002
Location: Dominican Republic
Posts: 2 KuWait User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question Creating an email account with php

Is ther a way to create an email account from php?

Reply With Quote
  #2  
Old August 28th, 2002, 06:53 PM
Ben Rowe
Guest
Dev Articles Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
how do you mean, create an email account?

Reply With Quote
  #3  
Old August 29th, 2002, 01:00 PM
KuWait KuWait is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2002
Location: Dominican Republic
Posts: 2 KuWait User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
i just want a user to register and with that registration info create an email account.

ej: user: lindo
email: URL

Reply With Quote
  #4  
Old August 29th, 2002, 02:53 PM
Lindset Lindset is offline
weirdomoderator
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jun 2002
Location: Alta, Norway
Posts: 370 Lindset User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Send a message via ICQ to Lindset Send a message via AIM to Lindset
I don't think there's a universal method of making a mail account. My guess is that you'll have to check with the pop3 and smtp software you're using on your server to see which method you can use

I've never tried doing that myself, so I'm just guessing here
__________________
Best Regards,
Håvard Lindset

Reply With Quote
  #5  
Old September 4th, 2002, 03:09 AM
KreaTivMinD KreaTivMinD is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Sep 2002
Posts: 1 KreaTivMinD User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Yeah, Lindset is right, it all depends on the software that you are using.

Besides, you have not even mentioned what type of webserver you are using, which o/s etc.

What i feel is that, the more info you give the better it helps get the solution.

Reply With Quote
  #6  
Old January 21st, 2003, 03:37 PM
neos neos is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jan 2003
Location: scotland
Posts: 6 neos User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to neos
Create mail accounts for internal use in an e-commerce site

Hi there,

I have the same almost problem. I'm developing an online dating site using PHP and MySQL. I haven't yet found a host to put it because i'm trying to find out more about how i will implement an internal mailing system. Something like this furum uses for its members.

To test the site right now i'm using php 4.0.1 on windows XP with MySQL server the latest version.

The site probabaly will be hosted under linux . I dont think there is there a host that cangive you unlimited pop mail accounts so you can create one every time a user registers and i dont know any hosts that can provide IMAP protocol so i can use the native methods of PHP to implement this.

Can anybody give me an idea how to implement this without having to rent a dedicated server with its own mail server?


Reply With Quote
  #7  
Old January 21st, 2003, 04:16 PM
Taelo Taelo is offline
5B's
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Oct 2002
Location: PC, FL
Posts: 366 Taelo User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 30 m 59 sec
Reputation Power: 8
I know you can do it with FreeBSD/Postfix/MySQL
__________________
-- Jason

Reply With Quote
  #8  
Old January 21st, 2003, 05:53 PM
jpenn jpenn is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Oct 2002
Location: Washington, DC
Posts: 317 jpenn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 m 3 sec
Reputation Power: 8
You would call a system command using system() or its related funtions. You have to call your host and get the sys admin to give you the command to create the accounts, and you would just call it through PHP.
NOTE: Not all hosts will give you the ability to do this; some are very reluctant in doing so...

--------------------------------------------

If you are using an IMAP server, you have more flexibility in doing this; and more features.
__________________
~ Joe Penn

We work for free to help make this a valuable resource on the internet. Do you appreciate the help - did we provide help that will help you prosper and help that has contributed to sharpening your current skill set?

Show your appreciation and purchase something from our Amazon Wishlist's - it's simple and a great way to say thank you.




Reply With Quote
  #9  
Old January 21st, 2003, 09:29 PM
Jeb. Jeb. is offline
"l33t? What's l33t?"
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2002
Posts: 51 Jeb. User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Send a message via AIM to Jeb.
Re: Create mail accounts for internal use in an e-commerce site

Quote:
Originally posted by neos
Can anybody give me an idea how to implement this without having to rent a dedicated server with its own mail server?



The Private Messaging system of vBulletin is actually very simple, and doesn't use any form of mailing function or extension.

When User A goes to check their PM's, vB will pull all PM's from the database that are sent to User A.

When User A writes a PM to User B, vB places it into the database, from User A to User B, so when User B checks their PM's, the one from User A shows up.

All it requires is one MySQL table, and a bit of logic

-Jeb.
__________________
Jeb.

AIM: JebediahMc - PM Me - E-Mail Me


Reply With Quote
  #10  
Old January 22nd, 2003, 01:26 AM
neos neos is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jan 2003
Location: scotland
Posts: 6 neos User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to neos
Mailing solution

Guys much obliged for your posts..

after all this programming i did not look the obvious solution..using mysql would be the ideal easy solution to my problem....

did find out though that IMAP server is hard to find on hosts but is something that you definetely want to use if you are into mail accounts.

Cheers!

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingPHP Development > Creating an email account with php


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

Request Your Free Technology Downloads!
 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

Request Your Free Technology Downloads!
 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

Request Your Free Technology Downloads!
 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

Request Your Free Technology Downloads!
 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

Request Your Free Technology Downloads!
 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 12 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek