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

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

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

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

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

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);

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

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

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

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

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

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

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 > Hi > > Has anyone d

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