Hello,
on 02/14/2008 12:34 PM julian said the following:
> I am using phpmailer currently to send email from my applications. My
> ISP is restricting the usage of email without SSL/TLS and my SMTP
> connections have started to fail...
>
> Any hints on the best approach to send email from php appp
Hello,
on 03/20/2007 06:54 AM Delta Storm said the following:
> Hi,
>
> I'm having problem with character encoding in PHP mail functions.
>
> CODE:
> $headers.= "Content-Type: text/html; charset=iso-8859-1";
> $headers .= "MIME-Version: 1.0 ";
> $headers .= "Content-Transfer-Enco
Eustace wrote:
I am relatively new to PHP and could use some help. I have a form, which is
basically in an email format, from, subject, and message. How do I then send
this to an email? I know a bit about the mail function, somebody show me the
ropes please!
Eustace
I'll show you how we do it here
Hello,
on 01/15/2005 12:59 AM Kelly said the following:
I am having trouble with PHP 5.0.3. I am running Apache 1.3.29. I am
running Solaris 9 x86 on an Intel box.
I get no errors when I start Apache. I get no errors when I run
configtest.
My problem is mail() does not work. It does invoke
Hello,
Phpdiscuss - Php Newsgroups And Mailing Lists wrote:
I have a dedicated Red Hat linux boxed leased from Interland and the php
mail function does not work. I have found several articles on things to
try and have tried everything I saw but to no avail. I set up a php
script to mail and then
Hello,
On 11/14/2004 04:11 AM, Curt Zirzow wrote:
Im using the php mail() function to try send an email to a user that has
just registered.
mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website
Registration' ,
'Welcome');
But when I get the following error back.:
Warning: mail(): SMTP serve
* Thus wrote Manuel Lemos:
> Hello,
>
> On 11/13/2004 04:12 AM, Curt Zirzow wrote:
> >>>Im using the php mail() function to try send an email to a user that has
> >>>just registered.
> >>>
> >>>mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website
> >>>Registration' ,
> >>>'Welcome');
> >>>
Hello,
On 11/13/2004 04:12 AM, Curt Zirzow wrote:
Im using the php mail() function to try send an email to a user that has
just registered.
mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website Registration' ,
'Welcome');
But when I get the following error back.:
Warning: mail(): SMTP server
* Thus wrote Manuel Lemos:
> Hello,
>
> On 11/10/2004 10:36 AM, Garth Hapgood - Strickland wrote:
> >Im using the php mail() function to try send an email to a user that has
> >just registered.
> >
> >mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website Registration' ,
> >'Welcome');
> >
>
Hello,
On 11/10/2004 10:36 AM, Garth Hapgood - Strickland wrote:
Im using the php mail() function to try send an email to a user that has
just registered.
mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website Registration' ,
'Welcome');
But when I get the following error back.:
Warning: mai
*cough*quotes*cough*
Patrick E Phillips wrote:
I have php installed on my PC as well as an apache webserver and mysql. I am
using cox.net as my cable internet provider. They block port 25 but I do not
know if that affects what I am trying to do... which is:
use the mail() function to send email for
Hello,
On 04/25/2004 06:03 PM, Jason Sheets wrote:
Take a look at the Mail Queue class from PEAR, it enables you to put mail in
the Queue instead of real time delivery.
http://pear.php.net/packages.php?catpid=14&catname=Mail
This is a bit of an overkill as it attempts to provide an inefficient
so
M
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Re: php mail() scaleability
Manuel Lemos wrote:
> Hello,
>
> On 04/25/2004 04:18 PM, Josh Klobe wrote:
>
>> Using mail($to, $subject, $content, $headers) takes way too long
>> when attempting to mail to 30k people. This seems to
Hello,
On 04/25/2004 05:43 PM, Travis Low wrote:
Using mail($to, $subject, $content, $headers) takes way too long when
attempting to mail to 30k people. This seems to be a result of a socket
being opened for each send. Is there a better way to approach this
situation via php?
Under Unix/Linux
Manuel Lemos wrote:
Hello,
On 04/25/2004 04:18 PM, Josh Klobe wrote:
Using mail($to, $subject, $content, $headers) takes way too long when
attempting to mail to 30k people. This seems to be a result of a socket
being opened for each send. Is there a better way to approach this
situation via ph
Hello,
On 04/25/2004 04:18 PM, Josh Klobe wrote:
Using mail($to, $subject, $content, $headers) takes way too long when
attempting to mail to 30k people. This seems to be a result of a socket
being opened for each send. Is there a better way to approach this
situation via php?
Under Unix/Linux,
Hello,
On 11/19/2003 11:55 AM, Jacques Roux wrote:
Is there a mail function or object that I can use on my PHP sites that does
the same as the CDONTS object in ASP? Where can I find some tutorials on
this subject?
You may want to try this class to do what CDONTS does and more:
http://www.phpclas
I've been working on a simple mail attachment script, that is now working.
Its pretty well documented in the code. You can download it at
www.pfohlsolutions.com/projects/mailer/mailer.zip. It verifies fields and
hides the to email address from spiders. Email me if you have any questions
or suggesti
"Marco Alting" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> When I try to use a php script, to send an email, the From header is
> replaced by a senders email address of my provider. Is there any way to
make
> it so my email address shows up in the From heade
"Marco Alting" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> When I try to use a php script, to send an email, the From header is
> replaced by a senders email address of my provider. Is there any way to
make
> it so my email address shows up in the From header
John Williams wrote:
>I'm having a problem getting the mail() function working on php 4.2.2.
>
>I get the error message:
>Warning: mail() is not supported in this PHP build
>
>I'm running Solaris 8 and have set the symlink for sendmail. I have
>recompiled PHP, set the php.ini to point to sendmai
>How can I make my form which entered by a user, then sent to a company
>employee, secure, not vulnerable attack?
What kind of attack?...
Rule #1.
NEVER trust data coming in from the user.
Things to maybe check:
The email should be within a certain reasonable length.
Their subject should not c
refer to the manual of your email server and check for quota settings.
You obviously reached the quota limit there and now
you're not allowed to send any data, until the quota is
reset. This may be on a daily or monthly basis or perhaps
you have to do it manually.
Regards Michael
"Manisha" <[EMA
Its probably a problem with your mail server software not being able to send
email out. I think you need t tell it to connect to another email server
outside of your network
"Mindless Bot" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hello,
>
> I hope maybe
Your smtp is valid? Try error checking for that? See you php.ini. If you are
running it on localhost you might try the same smtp that is used in your
emailer. I gaffed on that once. :)
Brad Wright wrote:
> Hi all... I have a line in a page that should send me an email when the page
> is loaded.
Luke Vogel wrote:
[snip]
> Has anyone else experienced this issue, and or can anyone recommend a
> secure solution.
Found the solution ...
http://www.sendmail.org/~ca/email/doc8.12/SECURITY
--
Regards
Luke
--
Q: What does FAQ stand for?
A: We are Frequently Asked this Question, and we h
26 matches
Mail list logo