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