Re: [PHP] forwarding from virtual email account to real email account
Are you looking for something like this? SMTP using PHP? http://www.weberdev.com/get_example-4295.html Thanks Richard On 1/25/06, Binay <[EMAIL PROTECTED]> wrote: > > Hi All, > > > Is it possible that we create a virtual email account(no physical > existence) e.g [EMAIL PROTECTED] which will be associated with a real email > account e.g. [EMAIL PROTECTED] so that if any body sends the email to virtual > email account [EMAIL PROTECTED] will be automatically forwarded to the real > email account [EMAIL PROTECTED] Is it achievable using PHP ? Please throw > some light as this becoming a major requirement of my client. > > Thanks in adance, > Binay >
Re: [PHP] forwarding from virtual email account to real email account
Binay, I guess you could set up PHP to listen on port 25 and rewrite the headers of mail messages containing aliases, but that seems like a lot of work for what could easily be handled by a (much quicker) MTA. David -- David Grant http://www.grant.org.uk/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] forwarding from virtual email account to real email account
Binay(Local) wrote: Hi I think i've been misunderstood here. I meant whether this is achievable using PHP or not? I know and can be done very easily on server with either control panel or manual intervene but its integration with PHP is my main concern. I hope you understand what i mean. you want someone else to check the manual for you to see if there is a function called create_fully_functional_email_alias_for_addr_regardless_of_whether_you_control_either_domain($alias, $email) ? Your meaning to lazily ask very vague questions (in a manner unbefitting the subject matter, using made-up terminology, while professing to be a professional) in the hope that some is going to spoonfeed you a complete solution which you can then roll out to your customer (probably my customer until he got the braindead idea to outsource) in five minutes flat; if I understand you correctly. I dare you to ask a real php question, with sample code and stuff. Thanks, Binay - Original Message - From: "Jochem Maas" <[EMAIL PROTECTED]> To: "Binay" <[EMAIL PROTECTED]> Cc: Sent: Wednesday, January 25, 2006 6:48 PM Subject: Re: [PHP] forwarding from virtual email account to real email account Binay wrote: Hi All, Is it possible that we create a virtual email account(no physical existence) e.g [EMAIL PROTECTED] which will be associated with a real email account e.g. [EMAIL PROTECTED] so that if any body sends the email to virtual email account [EMAIL PROTECTED] will be automatically forwarded to the real email account [EMAIL PROTECTED] Is it achievable using PHP ? Please throw some light as this becoming a major requirement of my client. how is it possible that you can list the following solutions/skills on your website and not know what an email alias is??? Web Application Development Website Design & Development Web Hosting Search Engine Ranking Services Content Management Solution e-Commerce Solutions B2B & B2C Portal Development Intranet & Extranet Solutions Document Management System e-CRM Solutions Supply Chain Management Sales Force Automation Workflow Management Solutions Thanks in adance, Binay -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] forwarding from virtual email account to real email account
John Nichel wrote: Binay wrote: Hi All, Is it possible that we create a virtual email account(no physical existence) e.g [EMAIL PROTECTED] which will be associated with a real email account e.g. [EMAIL PROTECTED] so that if any body sends the email to virtual email account [EMAIL PROTECTED] will be automatically forwarded to the real email account [EMAIL PROTECTED] Is it achievable using PHP ? Please throw some light as this becoming a major requirement of my client. Asking if is possible in php doesn't make this a php question, or even remotely php related. This is basic mail server functionality. Hey, I want to change the oil in my car, is this possible in PHP? trust bloomin' John to come up with a sensible example ... John I need world peace and all the women to bow to my command, throw some light on this - it's urgent. oh and I want it to have a pear-like cmdline interface like so: > peargirl install ajolie-submissive -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] forwarding from virtual email account to real email account
Binay wrote: Hi All, Is it possible that we create a virtual email account(no physical existence) e.g [EMAIL PROTECTED] which will be associated with a real email account e.g. [EMAIL PROTECTED] so that if any body sends the email to virtual email account [EMAIL PROTECTED] will be automatically forwarded to the real email account [EMAIL PROTECTED] Is it achievable using PHP ? Please throw some light as this becoming a major requirement of my client. Asking if is possible in php doesn't make this a php question, or even remotely php related. This is basic mail server functionality. Hey, I want to change the oil in my car, is this possible in PHP? -- John C. Nichel IV Programmer/System Admin (ÜberGeek) Dot Com Holdings of Buffalo 716.856.9675 [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
RE: [PHP] forwarding from virtual email account to real email account
Binay wrote: > Is it possible that we create a virtual email account(no physical > existence) e.g [EMAIL PROTECTED] which will be associated with a real email > account e.g. [EMAIL PROTECTED] so that if any body sends the email to virtual > email account [EMAIL PROTECTED] will be automatically forwarded to the real > email account [EMAIL PROTECTED] Is it achievable using PHP ? Please throw > some light as this becoming a major requirement of my client. What you described here is called MAIL FORWARDING or often MAIL ALIASSING. It is a functionality of your mail server. Contact your ISP for assistance on setting this up. If you run your own mail server look at the docs. If you want to use PHP for this (not recommended because the mail server can do it already) you need to write a script which check email on one account and then email it to the other accounts. Albert -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.375 / Virus Database: 267.14.22/239 - Release Date: 2006/01/24 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] forwarding from virtual email account to real email account
On Wednesday 25 January 2006 15:04, Binay(Local) wrote: > Hi > > I think i've been misunderstood here. I meant whether this is achievable > using PHP or not? I know and can be done very easily on server with either > control panel or manual intervene but its integration with PHP is my main > concern. I hope you understand what i mean. It's probably do-able in B - all you're doing is feeding a data stream from the MTA to a program. If, however, you're doing it without involving and MTA, you may have problems. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] forwarding from virtual email account to real email account
Hi I think i've been misunderstood here. I meant whether this is achievable using PHP or not? I know and can be done very easily on server with either control panel or manual intervene but its integration with PHP is my main concern. I hope you understand what i mean. Thanks, Binay - Original Message - From: "Jochem Maas" <[EMAIL PROTECTED]> To: "Binay" <[EMAIL PROTECTED]> Cc: Sent: Wednesday, January 25, 2006 6:48 PM Subject: Re: [PHP] forwarding from virtual email account to real email account Binay wrote: Hi All, Is it possible that we create a virtual email account(no physical existence) e.g [EMAIL PROTECTED] which will be associated with a real email account e.g. [EMAIL PROTECTED] so that if any body sends the email to virtual email account [EMAIL PROTECTED] will be automatically forwarded to the real email account [EMAIL PROTECTED] Is it achievable using PHP ? Please throw some light as this becoming a major requirement of my client. how is it possible that you can list the following solutions/skills on your website and not know what an email alias is??? Web Application Development Website Design & Development Web Hosting Search Engine Ranking Services Content Management Solution e-Commerce Solutions B2B & B2C Portal Development Intranet & Extranet Solutions Document Management System e-CRM Solutions Supply Chain Management Sales Force Automation Workflow Management Solutions Thanks in adance, Binay -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] forwarding from virtual email account to real email account
Binay wrote: Hi All, Is it possible that we create a virtual email account(no physical existence) e.g [EMAIL PROTECTED] which will be associated with a real email account e.g. [EMAIL PROTECTED] so that if any body sends the email to virtual email account [EMAIL PROTECTED] will be automatically forwarded to the real email account [EMAIL PROTECTED] Is it achievable using PHP ? Please throw some light as this becoming a major requirement of my client. Thanks in adance, Binay in the server configuration software (eg PLESK or cPAnel) you can create email address that just redirect as soon as an email is sent to them, so Im not sure where PHP ties in, but this could be what you are looking for? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] forwarding from virtual email account to real email account
Binay wrote: Hi All, Is it possible that we create a virtual email account(no physical existence) e.g [EMAIL PROTECTED] which will be associated with a real email account e.g. [EMAIL PROTECTED] so that if any body sends the email to virtual email account [EMAIL PROTECTED] will be automatically forwarded to the real email account [EMAIL PROTECTED] Is it achievable using PHP ? Please throw some light as this becoming a major requirement of my client. how is it possible that you can list the following solutions/skills on your website and not know what an email alias is??? Web Application Development Website Design & Development Web Hosting Search Engine Ranking Services Content Management Solution e-Commerce Solutions B2B & B2C Portal Development Intranet & Extranet Solutions Document Management System e-CRM Solutions Supply Chain Management Sales Force Automation Workflow Management Solutions Thanks in adance, Binay -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php