creating a mail id in a particular site
Moderator: General Moderators
creating a mail id in a particular site
Suppose i have a site abc.com. Now i want to create a mail id say testmail@abc.com by using php script. Please give me sugestion using php script.
- jyhm
- Forum Contributor
- Posts: 228
- Joined: Tue Dec 19, 2006 10:08 pm
- Location: Connecticut, USA
- Contact:
Not sure what your asking,
If you want to create a mail id, all host sites have
their own tools in order to create an email id such as :
me@site.com,
you@site.com,
us@site.com,
them@site.com,
etc@site.com
Try and be more specific.
If you want to create a mail id, all host sites have
their own tools in order to create an email id such as :
me@site.com,
you@site.com,
us@site.com,
them@site.com,
etc@site.com
Try and be more specific.
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
Re: creating a mail id in a particular site
You can do re-directs easily to other accounts (as in, send mail to abc@your-host.tld to foobar@hotmail.com). That's just aliasing... Exim supports external aliases, some MTAs will not support it without some extra configuration/filtering.basudeb wrote:Suppose i have a site abc.com. Now i want to create a mail id say testmail@abc.com by using php script. Please give me sugestion using php script.
What mail transfer agent do your host use? You can usually work this out by telnetting to the SMTP service on port 25 and seeing who the greeting comes from: e.g.
Code: Select all
w3style:/Users/d11wtq root# telnet smtp.swiftmailer.org 25
Trying 217.147.94.117...
Connected to smtp.swiftmailer.org.
Escape character is '^]'.
220 localhost.localdomain ESMTP Exim 4.50 Sat, 06 Jan 2007 13:49:58 +0000[url=http://forums.devnetwork.net/viewtopic.php?t=30037]Forum Rules[/url] Section 1.1 wrote:3. Do not make multiple, identical posts. This is viewed as spam and will be deleted.
-
impulse()
- Forum Regular
- Posts: 748
- Joined: Wed Aug 09, 2006 8:36 am
- Location: Staffordshire, UK
- Contact:
Do you mean you want to create a POP account on a server from a PHP script? For example if I signed up for an e-mail account though a website it would create myChooseEmail@mydomain.com?