473,795 Members | 2,830 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

PHP Email


Hello all,

How can i send email using PHP from my server ?
Which settings are necessary ?

please, guide me
Thanks in advance.

Apr 27 '07 #1
17 1954
Michael Vilain wrote:
In article <11************ **********@u32g 2000prd.googleg roups.com>,
pradeep <pw*******@gmai l.comwrote:
>Hello all,

How can i send email using PHP from my server ?
Which settings are necessary ?

please, guide me
Thanks in advance.

RTFM:

http://us2.php.net/manual/en/ref.mail.php
First of all, do you have an SMTP server running on your server? Does
it require authentication?

Depending on what you have and what you need to do, the mail() function
could work fine. With other situations you might need a package such as
Pear Mail to make things easier.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Apr 27 '07 #2
Max
I have a question related to this post:

We are using 2 different Linux based servers: one for web (PHP, MySQL)
and another for the mail (Qmail, SquirrelMail e.t.c.). Our webserver
is co-located and mail server is installed here. For the PHP mail()
function to be able to use the mail server, I modified php.ini for
SMTP to pointi to the mail server' IP. Yet it still uses web server's
sendmail as SMTP MTA.

Please help

Apr 27 '07 #3
Max wrote:
I have a question related to this post:

We are using 2 different Linux based servers: one for web (PHP, MySQL)
and another for the mail (Qmail, SquirrelMail e.t.c.). Our webserver
is co-located and mail server is installed here. For the PHP mail()
function to be able to use the mail server, I modified php.ini for
SMTP to pointi to the mail server' IP. Yet it still uses web server's
sendmail as SMTP MTA.

Please help
Did you define sendmail_path in your php.ini? Also, after changing your
php.ini, did you stop and restart your server?

What do you have for your sendmail parameters in your php.ini?

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Apr 28 '07 #4
pradeep schreef:
Hello all,

How can i send email using PHP from my server ?
Which settings are necessary ?
Apart from configuring the os i'd probably opt for
http://www.swiftmailer.org/
--
Tim Van Wassenhove <url:http://www.timvw.be/>
Apr 28 '07 #5
Rik
Michael Vilain wrote:
In article <11************ **********@s33g 2000prh.googleg roups.com>,
Max <Ma*********@gm ail.comwrote:
>I have a question related to this post:

We are using 2 different Linux based servers: one for web (PHP, MySQL)
and another for the mail (Qmail, SquirrelMail e.t.c.). Our webserver
is co-located and mail server is installed here. For the PHP mail()
function to be able to use the mail server, I modified php.ini for
SMTP to pointi to the mail server' IP. Yet it still uses web server's
sendmail as SMTP MTA.

Please help

That's not how UNIX email works. AFAIK, php.ini tells php where the
local mail transport agent (MTA) is located. php uses this to spawn a
thread or perhaps even fork() a process to deliver the mail to the MTA.
There's no provision to use "remote" MTAs.

You'll have to configure the local MTA on the web server to forward the
mail to the mail server if you want mail delivered.
Nonsense. PHP can just as easily use a third party SMTP server, as long
as it's configured properly, see Jerry's reply.

--
Rik Wasmus

Estimated date being able to walk again: 01-05-2007.
Less then a week, hurray!
Apr 28 '07 #6
Rik
Michael Vilain wrote:
In article <f0**********@n ews2.zwoll1.ov. home.nl>,
Rik <lu************ @hotmail.comwro te:
>Michael Vilain wrote:
>>That's not how UNIX email works. AFAIK, php.ini tells php where the
local mail transport agent (MTA) is located. php uses this to spawn a
thread or perhaps even fork() a process to deliver the mail to the MTA.
There's no provision to use "remote" MTAs.

You'll have to configure the local MTA on the web server to forward the
mail to the mail server if you want mail delivered.
Nonsense. PHP can just as easily use a third party SMTP server, as long
as it's configured properly, see Jerry's reply.

OK, I'll say it --slowly-- for you. AFAIK, php.ini won't allow
configuration to a REMOTE SMTP server on LINUX or UNIX systems.
Je m'excuse. Indeed the only hosts where I had to use a different SMTP
seem to be Windows hosts.... Where it's no problem to use a different one.
--
Rik Wasmus

Estimated date being able to walk again: 01-05-2007.
Less then a week, hurray!
Apr 29 '07 #7
Max
I have read the php.net mail manual and am aware of the SMTP MTA
Windows redirect. The manual reads that php.ini SMTP string can be
configured for Windows servers only. I am aware of that. What I am
trying to accomplish is - to make it work in Linux setup.

Here is our scenario:

We have the following setup (I am rewriting the actual values for
security purposes):
The mail server's IP is 111.111.111.111 which resolves to
mail.mysite.com
The webserver's IP is 222.222.222.222 which is www.mysite.com or
mysite.com

To prevent increasing SPAM attacks we modified the Mail MX records to
point to our ISP, which has the SPAM filter installed on their server
(121.121.121.12 1). All the SPAM filter does is - it strips sender
email's domain part and verifying it with sender's IP. If it is a
match, then ISP's server relying it to our mail server
(222.222.222.22 2)

Webserver's sendmail is working properly, but what happens is:
111.111.111.111 -121.121.121.121 X 222.222.222.222

When the email is originated at 111.111.111.111 - mail.mysite.com
(using PHP mail() function), the ISP's filter reads the sender email
address, compares it with IP, arrests the email, replying "You are not
222.222.222.222 " and tries to bounce it back to 111.111.111.111 .

We need to bypass that route for mail originated on the webserver,
hopefully by rewriting php.ini.

Apr 30 '07 #8
Max
I have tried rewriting php.ini, yet it did not produce desired
results.
Is there any other way, other than rewriting mail() function with our
own SMTP handler?

Apr 30 '07 #9
Max wrote:
I have read the php.net mail manual and am aware of the SMTP MTA
Windows redirect. The manual reads that php.ini SMTP string can be
configured for Windows servers only. I am aware of that. What I am
trying to accomplish is - to make it work in Linux setup.

Here is our scenario:

We have the following setup (I am rewriting the actual values for
security purposes):
The mail server's IP is 111.111.111.111 which resolves to
mail.mysite.com
The webserver's IP is 222.222.222.222 which is www.mysite.com or
mysite.com

To prevent increasing SPAM attacks we modified the Mail MX records to
point to our ISP, which has the SPAM filter installed on their server
(121.121.121.12 1). All the SPAM filter does is - it strips sender
email's domain part and verifying it with sender's IP. If it is a
match, then ISP's server relying it to our mail server
(222.222.222.22 2)

Webserver's sendmail is working properly, but what happens is:
111.111.111.111 -121.121.121.121 X 222.222.222.222

When the email is originated at 111.111.111.111 - mail.mysite.com
(using PHP mail() function), the ISP's filter reads the sender email
address, compares it with IP, arrests the email, replying "You are not
222.222.222.222 " and tries to bounce it back to 111.111.111.111 .

We need to bypass that route for mail originated on the webserver,
hopefully by rewriting php.ini.
Max,

Looks like you need to change the rules on your mail server to accept
(and relay) mail from 111.111.111.111 .
--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Apr 30 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
8802
by: Chuck Anderson | last post by:
Can anyone point me in the right direction? I want to use Php to automate confirmation of someone joining an email list by them replying to an email (so they don't have to have a browser?). I will probably use a hyperlink with a unique ID, but I also want to know how to go about reading from a mailbox with Php so I can use an email reply method, too. I'm having trouble finding any kind of tutorial. From the bit of searching I've done,...
4
3020
by: dmiller23462 | last post by:
So here's my problem.....I need to set up different email distributions based on which option in the following Select form has been chosen....For instance if "Putaway" is chosen it needs to email User1@here.whatever and User4@here.whatever but if "Loaded" is chosen it needs to email User2@here.whatever and User3@here.whatever, etc, etc... I'm aware that the only thing that really needs to change is the "Mail.AddAddress" line (at least...
88
12566
by: Mike | last post by:
Is there a way to determine what a user's default email client is? I read a post from 3 years ago that said no. I guess I'm hoping something has come along since then.
2
2225
by: BSG-SMTP-Gateway | last post by:
The following message sent by this account has violated system policy: Connection From: 64.253.55.90 From: python-list@python.org To: terriss@birdsall.com, q4dzsAEAAAAA@birdsall.com, zSbxT7FSCIAEAAAAA@birdsall.com, rQEAAAAA@birdsall.com, 20a.9ea7bfe.306372db@birdsall.com, Gslotnick@birdsall.com, chrisbaker@birdsall.com, mshawver@birdsall.com, SJCSmile@birdsall.com, Pugsleydmd@birdsall.com, FredBMaier@birdsall.com, dbosco6896@birdsall.com,...
26
2822
by: libsfan01 | last post by:
Hi all! Can anyone show me how to check and email field on a form for the existence of these two characters. Kind regards Marc
3
2879
by: g0c | last post by:
hi, how to hide or replace email addresses in php mail function with something like "group" so the email addresses to which email is sent are not visible ? i have : $subs = "email1@dot.com, emai2@dot.com, email3@dot.com" $header .= "To : email@notset.com\r\n";
3
2521
by: Erik Johnson | last post by:
THE GOAL: I need to send an email with a simple ASCII text body and an attached HTML file. I have scripts that send basic emails via the smtplib module that don't have any attachements and that seems to work fine. I first looked at the mimetools modules but it says it is depreceated since 2.3, so I started trying to use the email module. Here is a script that basically follows the second example given in section 7.1.13 of the Python...
15
15243
by: Craig Hurley | last post by:
Hello, user@x.com receives an email from user@a.com. I want to forward that email to user@y.com. I want the contents/header to remain intact, with the exception of adding "X-Forwarded-For". In other words, when user@y.com received the email, it will be from user@a.com, but will contain a reference that it was forwarded by user@x.com. I'm piping all email destined for user@x.com to a php script. I've seen some very complicated...
3
8973
by: IGD | last post by:
I don't know if this is the right place to post this or not. If not, could someone direct me elsewhere where I would find more information on how to solve my problem? Thanks! My problem is this: I am writing an application for work. This application sends a basic html email via SMTP to a group. In this group are individual people's emails, but also about 5 other groups. The problem is that the email is only getting received by (or sent...
27
4946
matheussousuke
by: matheussousuke | last post by:
I'm having trouble with e-mail sending, I mean, the website is suposed to send a confirmation email after sign up, but it gets like text plain instead of HTML May someone help me, please? Here's the code <?php require_once 'path_cnfg.php';
0
9673
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10443
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10216
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10165
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10002
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5437
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5565
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2921
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.