Re: [PHP] Sending Email via SMTP account using PHP

2011-05-18 Thread Eli Orr (Office)
Thanks Daniel! It works perfect. Eli On 18/05/2011 17:47, Daniel Brown wrote: On Wed, May 18, 2011 at 03:17, Eli Orr (Office) wrote: Hi, I'm looking for a good example for using a real SMTP account to send email from, such as serv...@somai.com where there is a user& password and smtp server

Re: [PHP] Sending Email via SMTP account using PHP

2011-05-18 Thread Daniel Brown
On Wed, May 18, 2011 at 03:17, Eli Orr (Office) wrote: > > Hi, > I'm looking for a good example for using a real SMTP account to send email > from, > such as serv...@somai.com where there is a user & password and smtp server > available. > > Please advise with a good example to reuse, Try thi

[PHP] Sending Email via SMTP account using PHP

2011-05-18 Thread Eli Orr (Office)
Hi, I'm looking for a good example for using a real SMTP account to send email from, such as serv...@somai.com where there is a user & password and smtp server available. Please advise with a good example to reuse, Thanks Eli -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] sending email

2010-12-15 Thread Daniel Molina Wegener
On Wednesday 15 December 2010, Marc Fromm wrote: > When I use the mail function on a linux server, how is the email sent? > Does sendmail act alone or does it use SMTP? sendmail itself (or the replacement install, probably postfix or qmail) is an MTA itself, so... it do not requires an SMTP se

[PHP] sending email

2010-12-15 Thread Marc Fromm
When I use the mail function on a linux server, how is the email sent? Does sendmail act alone or does it use SMTP? Thanks Marc

Re: [PHP] sending email with php

2009-12-29 Thread George Langley
is a straight-ahead overview of what you can/should/cant/shouldn't do in HTML e-mails. Or check out: for some heavy-duty mail c

Re: [PHP] sending email with php

2009-12-23 Thread kranthi
No. You must have noticed gmail saying "images are blocked from .. ". This is done to prevent spammers from knowing if your email is authentic or not. Moreover you must have also noticed that all the news letters have a link pointing to a web page version of the newsletter.

Re: [PHP] sending email with php

2009-12-23 Thread kranthi
another point worth noting... most of the major email clients does not display external css/images by default. The user will have to grant permission explicitly.

Re: [PHP] sending email with php

2009-12-23 Thread Andy Shellam
Hi Suhakar, > Relative URLs won't work - when it's rendered inside the e-mail client, the relative URL has no meaning (I believe Outlook renders relative URLs relative to the temporary directory the HTML is being rendered in.) Other clients may do it relative to an imap:// URL. Try uplo

[PHP] sending email with php

2009-12-23 Thread Sudhakar
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/1999/xhtml";> Email Newsletter '; if(! mail($to, $subject, $message, $headers)){ echo "There was an error is sending the email"; } else{ echo "The email has been sent"; } ?> hi my question is about s

Re: [PHP] Sending email w/ attachments

2009-08-11 Thread Richard Heyes
Hi, > ... Sorry, quoted wrong email. Oopsy... -- Richard Heyes HTML5 graphing: RGraph - www.rgraph.net (updated 8th August) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sending email w/ attachments

2009-08-11 Thread Phpster
On Aug 10, 2009, at 11:22 PM, Skip Evans wrote: Bastien Koert wrote: Use PHPMailer or one of the other classes available...makes life so much easier Kick Ass!!! Yes! Wow! Was that a breeze! That class rocks! Thanks tons, Bastien! I have to admit when I first saw your reply I

Re: [PHP] Sending email w/ attachments

2009-08-11 Thread Richard Heyes
Hi, > Very cool! I'll take that as a compliment... :-) -- Richard Heyes HTML5 graphing: RGraph - www.rgraph.net (updated 8th August) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sending email w/ attachments

2009-08-11 Thread Devendra Jadhav
Check out this link http://www.learnphp-tutorial.com/Email.cfm On Tue, Aug 11, 2009 at 8:52 AM, Skip Evans wrote: > Bastien Koert wrote: > >> >> Use PHPMailer or one of the other classes available...makes life >> so much easier >> >> > >Kick Ass!!! > > > Yes! Wow! Was that a breeze

Re: [PHP] Sending email w/ attachments

2009-08-10 Thread Skip Evans
Bastien Koert wrote: Use PHPMailer or one of the other classes available...makes life so much easier Kick Ass!!! Yes! Wow! Was that a breeze! That class rocks! Thanks tons, Bastien! I have to admit when I first saw your reply I thought, "Oh, man, another class to learn? But

Re: [PHP] Sending email w/ attachments

2009-08-10 Thread Adam Randall
Funny, I just had to figure out today how to nicely do HTML e-mails. I ended up using PEAR:Mail_mime, and it worked pretty well. It will also work for your attachments. I believe that PHP itself recommends it on their mail() function reference page. Adam. On Mon, Aug 10, 2009 at 6:49 PM, Skip Eva

Re: [PHP] Sending email w/ attachments

2009-08-10 Thread Bastien Koert
On Mon, Aug 10, 2009 at 9:49 PM, Skip Evans wrote: > Hey all, > > Trying to send emails with attachments, first try at this. And am trying to > adapt sample code I found here: > > http://www.webcheatsheet.com/PHP/send_email_text_html_attachment.php > > Trying this: > > ($data contains the contents

[PHP] Sending email w/ attachments

2009-08-10 Thread Skip Evans
Hey all, Trying to send emails with attachments, first try at this. And am trying to adapt sample code I found here: http://www.webcheatsheet.com/PHP/send_email_text_html_attachment.php Trying this: ($data contains the contents of the file; I've verified this) $hash = md5(date('r', time()))

Re: [PHP] Sending email when sendmail_from & sendmail_path = null.

2005-01-30 Thread Richard Lynch
Tim Burgan wrote: > My client's web host's PHP configuration for both sendmail_from and > sendmail_path are both = null. > > How do I send email with PHP? What options do I need to set within my > code, and what to? Not sure you can... You might try using .htaccess to set things like: php_value s

[PHP] Sending email when sendmail_from & sendmail_path = null.

2005-01-30 Thread Tim Burgan
Hello, My client's web host's PHP configuration for both sendmail_from and sendmail_path are both = null. How do I send email with PHP? What options do I need to set within my code, and what to? Tim

Re: [PHP] Sending email

2004-08-22 Thread zareef ahmed
Hi Octavian Rasnita, Yes You can use mail() function for this purpose. Just separate each reciepent address by a comma (,) . $to="[EMAIL PROTECTED],[EMAIL PROTECTED]"; $header="from:Me <[EMAIL PROTECTED]> \r\n"; $subject="[EMAIL PROTECTED]"; $body="test"; mail($to, $subject, $body, $header);

[PHP] Sending email

2004-08-22 Thread Octavian Rasnita
Hi all, I want to send a test message with the following specifications: 1. The message is sent by [EMAIL PROTECTED] 2. The message is sent to the following recipients: [EMAIL PROTECTED], [EMAIL PROTECTED] 3. The message has the subject: [EMAIL PROTECTED] 4. The message has the following heade

Re: [PHP] Sending email without an email server

2004-07-19 Thread Justin Patrin
Set this in your php.ini: sendmail_from = "[EMAIL PROTECTED]" On Mon, 19 Jul 2004 14:17:17 -0400, robert mena <[EMAIL PROTECTED]> wrote: > Hi jason, > > I've added the SMTP to a smtp server, saved the .ini and restarted the > server with no luck. > > It complains > > Warning: mail(): "sendmail_

Re: [PHP] Sending email without an email server

2004-07-19 Thread robert mena
Hi jason, I've added the SMTP to a smtp server, saved the .ini and restarted the server with no luck. It complains Warning: mail(): "sendmail_from" not set in php.ini or custom "From:" header missing in c:\program files\apache group\apache\htdocs\email.php on line 131 Line 131 is the end of the

Re: [PHP] Sending email without an email server

2004-07-13 Thread Ben Ramsey
You may also wish to look at PEAR::Mail ( http://pear.php.net/package/Mail ). It provides an SMTP interface to sending mail. Jason Wong wrote: On Tuesday 13 July 2004 18:46, robert mena wrote: I have a small script hosted in a win32/apache/php4 enviroment where I do not have a local email serv

Re: [PHP] Sending email without an email server

2004-07-13 Thread Jason Wong
On Tuesday 13 July 2004 18:46, robert mena wrote: > I have a small script hosted in a win32/apache/php4 enviroment where I > do not have a local email server. > > I was wondering how could I send emails either connecting directly to > the mx or sending through a relay. mail() on Windows system do

[PHP] Sending email without an email server

2004-07-13 Thread robert mena
Hi, I have a small script hosted in a win32/apache/php4 enviroment where I do not have a local email server. I was wondering how could I send emails either connecting directly to the mx or sending through a relay. regards. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Sending email with php

2004-06-16 Thread Chris Hayes
At 12:43 16-6-04, you wrote: Hi, How can i send email in php usig the smtp server? I'm looking for a tutorial or a good script. for what it's worth, i use the class from phpguru.org and try a google on [helo smtp php mail], loads of hits -- PHP General Mailing List (http://www.php.net/) To unsubsc

[PHP] Sending email with php

2004-06-16 Thread Phpu
Hi, How can i send email in php usig the smtp server? I'm looking for a tutorial or a good script. Thanks

Re: [PHP] Sending email with the windows version of php

2003-07-21 Thread Ivo Fokkema
> > hello, > > > > My client is wanting to transfer their web site from a system that uses: freebsd, apache, mysql and php, to a windows based hosting service. > > > Did you tell them this is a bad idea. :) > > So I was wondering if the Windows version of PHP sends e-mail with the same commands as

Re: [PHP] Sending email with the windows version of php

2003-07-19 Thread Curt Zirzow
Ivan Carey <[EMAIL PROTECTED]> wrote: > hello, > > My client is wanting to transfer their web site from a system that uses: freebsd, > apache, mysql and php, to a windows based hosting service. > Did you tell them this is a bad idea. > So I was wondering if the Windows version of PHP sends e-m

[PHP] Sending email with the windows version of php

2003-07-19 Thread Ivan Carey
hello, My client is wanting to transfer their web site from a system that uses: freebsd, apache, mysql and php, to a windows based hosting service. So I was wondering if the Windows version of PHP sends e-mail with the same commands as Sendmail or do I have to re-write the scripts. Or can you t

Re: [PHP] sending email

2003-05-29 Thread Dan Anderson
HTML E-mail is just HTML code embedded in the e-mail. Pick up a book on HTML code. Even easier, make a web page using your favorite editor (note ms word and open office allow you to save as web page) and cut and paste the code. I think there /might/ be an extra line or two you might have to add

Re: [PHP] sending email

2003-05-29 Thread daniel
add this in the header section Content-Type: text/html; charset=\"iso-8859-1 also for html body use this $message = chunk_split(base64_encode($message)); > hi > > i want to send html format type of emails > using mail( ); function? > > is there a how to where can i start learning > that type of

[PHP] sending email

2003-05-29 Thread Aris Santillan
hi i want to send html format type of emails using mail( ); function? is there a how to where can i start learning that type of encoding thanks

[PHP] sending email with linefeeds

2002-09-06 Thread Kai Hinkelmann
Hi, we are sending plain-text-emails from php not using the mail-command but with port-operations. Everything works fine BUT outlook 2000 eats the linefeeds. We tried several things: copying the header from an original (functional) email from outlook, sending with \n or \r\n to seperate header-in

Re: [PHP] sending email to a mailing list

2002-08-28 Thread Justin French
on 29/08/02 8:54 AM, Andy ([EMAIL PROTECTED]) wrote: > I do not agree. First off all (in my case) I do want to send personalized > e-mails. And even if I cancel this wish.. how about adresses which fail? You > will never ever find out how many adresses failed by putting them into the > all in bc

Re: [PHP] sending email to a mailing list

2002-08-28 Thread Manuel Lemos
Hello, On 08/28/2002 07:54 PM, Andy wrote: > I do not agree. First off all (in my case) I do want to send personalized > e-mails. And even if I cancel this wish.. how about adresses which fail? You > will never ever find out how many adresses failed by putting them into the > all in bcc. And.. i

Re: [PHP] sending email to a mailing list

2002-08-28 Thread Andy
I do not agree. First off all (in my case) I do want to send personalized e-mails. And even if I cancel this wish.. how about adresses which fail? You will never ever find out how many adresses failed by putting them into the all in bcc. And.. isn't there a restriction? What happens if you put 10

Re: [PHP] sending email to a mailing list

2002-08-27 Thread Justin French
on 28/08/02 1:38 AM, Raphael Hamzagic ([EMAIL PROTECTED]) wrote: > I'm with a little doubt about the best way to send a mail message to a large > mailing list using PHP. I'm not interested in existing mailing list > managers, or source codes. > I dont know if the best way to send emails is to us

[PHP] sending email to a mailing list

2002-08-27 Thread Raphael Hamzagic
Hi everyone, I'm with a little doubt about the best way to send a mail message to a large mailing list using PHP. I'm not interested in existing mailing list managers, or source codes. I dont know if the best way to send emails is to use a repeat loop with mail() function, or use some other stru

[PHP] sending Email

2001-12-17 Thread William Sanchez Sanchez
is "imap_mail()" currently available in Win32?? Thanks... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] sending email to php script

2001-11-04 Thread David Robley
On Fri, 2 Nov 2001 18:33, Adrian D'Costa wrote: > On Fri, 2 Nov 2001, David Robley wrote: > > > > > What if we need both version?? > > > > > > > > There's nothing stopping you running both. > > > > > > How do you compile it for both? > > > > > > Adrian > > > > To do the cgi compile, use all the c

Re: [PHP] sending email to php script

2001-11-02 Thread Adrian D'Costa
On Fri, 2 Nov 2001, David Robley wrote: > > > > What if we need both version?? > > > > > > There's nothing stopping you running both. > > > > How do you compile it for both? > > > > Adrian > > To do the cgi compile, use all the configure values you need EXCEPT > anything apache related. The com

Re: [PHP] sending email to php script

2001-11-02 Thread Chris Allen
>"I think someone electrified the corridor," Tom said haltingly. ^^ shouldnt that be "shockingly"? :p -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-m

Re: [PHP] sending email to php script

2001-11-01 Thread David Robley
On Fri, 2 Nov 2001 15:09, Adrian D'Costa wrote: > On Thu, 1 Nov 2001, Jason Murray wrote: > > > > You'll also need to compile php as a standalone, and put as > > > > the first line of your php script > > > > > > > > #!/path/to/php -q > > > > > > What if we need both version?? > > > > There's noth

RE: [PHP] sending email to php script

2001-11-01 Thread Adrian D'Costa
On Thu, 1 Nov 2001, Jason Murray wrote: > > > You'll also need to compile php as a standalone, and put as > > > the first line of your php script > > > > > > #!/path/to/php -q > > > > What if we need both version?? > > There's nothing stopping you running both. How do you compile it for both

Re: [PHP] sending email to php script

2001-10-31 Thread David Robley
On Wed, 31 Oct 2001 22:04, Adrian D'Costa wrote: > On Mon, 29 Oct 2001, David Robley wrote: > > On Sat, 27 Oct 2001 03:23, JSheble wrote: > > > A while ago an email came through here about how to parse out email > > > message from a php script. The thing that was mostly of interest > > > to me is

RE: [PHP] sending email to php script

2001-10-31 Thread Jason Murray
> > You'll also need to compile php as a standalone, and put as > > the first line of your php script > > > > #!/path/to/php -q > > What if we need both version?? There's nothing stopping you running both. J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PR

Re: [PHP] sending email to php script

2001-10-31 Thread Adrian D'Costa
On Mon, 29 Oct 2001, David Robley wrote: > On Sat, 27 Oct 2001 03:23, JSheble wrote: > > A while ago an email came through here about how to parse out email > > message from a php script. The thing that was mostly of interest to me > > is the ability to send an email to a php script, I guess thr

Re: [PHP] sending email to php script

2001-10-28 Thread David Robley
On Sat, 27 Oct 2001 03:23, JSheble wrote: > A while ago an email came through here about how to parse out email > message from a php script. The thing that was mostly of interest to me > is the ability to send an email to a php script, I guess through a > sendmail alias? I asked how to accomplis

[PHP] sending email to php script

2001-10-26 Thread JSheble
A while ago an email came through here about how to parse out email message from a php script. The thing that was mostly of interest to me is the ability to send an email to a php script, I guess through a sendmail alias? I asked how to accomplish this, and never saw an answer come through.

[PHP] Sending email through "mail" function to a bad address

2001-09-20 Thread Ruben
Hi! When I send email through "mail" function to a bad address, I don't get an error message back, as I used to when using perl and sendmail. I've triyed using "Return-Path" and "Errors-To" headers with no results. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAI

Re: [PHP] Sending Email via PHP on Win2K

2001-04-17 Thread Chris Anderson
Check out the mail() function in the php manual. There is literally tons of info on this function. - Original Message - From: "Boaz Yahav" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 17, 2001 4:54 PM Subject: [PHP] Sending Email via PHP on Win2K

[PHP] Sending Email via PHP on Win2K

2001-04-17 Thread Boaz Yahav
Hi Has anyone done this? Does PHP interact with the SMTP service on the machine? Does anyone have a script that does this? thanks Sincerely berber Visit http://www.weberdev.com Today!!! To see where PHP might take you tomorrow. -- PHP General Mailing List (http://www.php.net/) To u

Re: [PHP] PHP sending email contents as an attachment, not in thebody

2001-04-05 Thread Stuart J. Browne
"Lindsay Adams" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > According to the headers in your email, you are using Outlook Express. > > I think it is a microsoft issue. Because when I write a long email in OE, > and send it to myself, I get it as an attachme

Re: [PHP] PHP sending email contents as an attachment, not in thebody

2001-04-03 Thread Lindsay Adams
According to the headers in your email, you are using Outlook Express. I think it is a microsoft issue. Because when I write a long email in OE, and send it to myself, I get it as an attachment. If I write it in Eudora, and pick up my mail with Eudora, it comes as one message, no attachment, but

[PHP] PHP sending email contents as an attachment, not in the body

2001-04-03 Thread Tom Pinder
I'm using PHP to send emails. The problem I have is that when the emails reach a certain length, the emails are sent with the email contents as an attachment, not as part of the body. I've looked thru all the mailing lists, but I can't find a reference to a similar problem. Has anyone come across

RE: [PHP] sending email problems

2001-02-18 Thread Peter Houchin
001 11:59 AM To: "Peter Houchin" Subject: Re: [PHP] sending email problems > Could some one please take a look at this and offer any suggestions as to > why i can't 1 send multiple "to" emails and also why i can't send to the > addesses in the "CC" p

[PHP] sending email problems

2001-02-18 Thread Peter Houchin
Could some one please take a look at this and offer any suggestions as to why i can't 1 send multiple "to" emails and also why i can't send to the addesses in the "CC" part (i can't send to either single or multiple in CC) This has got me baffled as to why i can't... Thanks in advance Peter \n"