Re: [PHP] PHP Mailto() - Google now displaying HTML as Plain Text

2012-05-03 Thread Terry Ally (Gmail)
Hi all, This question is now closed. There is nothing wrong with my script. It was an error by Google when they switched over to the new-look email and have since rectified the issue and all is back to normal. Thanks to all who have responded. Terry On 3 May 2012 21:05, Gerardo Benitez wro

Re: [PHP] PHP Mailto() - Google now displaying HTML as Plain Text

2012-05-03 Thread Gerardo Benitez
Do you know if the mailto script allow set headers? Probably you must set a html header, something like this $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; Regards, Gerardo. On Tue, May 1, 2012 at 5:14 PM, Marco Behnke wrote: > > > Am 29.04.2012 22:31, schrieb Terry Ally

Re: [PHP] PHP Mailto() - Google now displaying HTML as Plain Text

2012-05-01 Thread Marco Behnke
Am 29.04.2012 22:31, schrieb Terry Ally (Gmail): Hi all, I have been using a mailto() script for the last three years and from April 25, 2012 incoming HTML email in Goggle mail is displaying as Plain Text. Something clearly changed with Google. Perhaps there is some change I need to make wit

[PHP] PHP Mailto() - Google now displaying HTML as Plain Text

2012-04-29 Thread Terry Ally (Gmail)
Hi all, I have been using a mailto() script for the last three years and from April 25, 2012 incoming HTML email in Goggle mail is displaying as Plain Text. Something clearly changed with Google. Perhaps there is some change I need to make with my script?? // First set up some variables for reci

Re: [PHP] Mailto members..?

2006-03-06 Thread Leif Gregory
Hello John, Wednesday, March 1, 2006, 11:38:15 AM, you wrote: > Outside of being a major spam flag, and possibly reaching the limits > of your smtp server. Agreed... Sending mass mail via BCC is going to be nothing but headaches. I've been down that road a number of times. --

Re: [PHP] Mailto members..?

2006-03-01 Thread Gustav Wiberg
- Original Message - From: "Jim Moseby" <[EMAIL PROTECTED]> To: "'Gustav Wiberg'" <[EMAIL PROTECTED]>; "Jim Moseby" <[EMAIL PROTECTED]> Cc: "PHP General" Sent: Wednesday, March 01, 2006 9:17 PM Subject: RE: [PHP]

RE: [PHP] Mailto members..?

2006-03-01 Thread Jim Moseby
> > This type of email may be more susceptible to being caught > in spam traps. > > Check with your webhost to learn of any limits to the > number of recipients > > per message, and number of messages per day/hour/etc. > > > > JM > > Aha.. that's a reason good enough for me for not using this me

Re: [PHP] Mailto members..?

2006-03-01 Thread Gustav Wiberg
- Original Message - From: "Jim Moseby" <[EMAIL PROTECTED]> To: "'Gustav Wiberg'" <[EMAIL PROTECTED]>; "Marcus Gnaß" <[EMAIL PROTECTED]> Cc: "PHP General" Sent: Wednesday, March 01, 2006 7:29 PM Subject: RE: [PHP

Re: [PHP] Mailto members..?

2006-03-01 Thread John Nichel
Gustav Wiberg wrote: - Original Message - From: "Marcus Gnaß" <[EMAIL PROTECTED]> To: "Gustav Wiberg" <[EMAIL PROTECTED]> Sent: Wednesday, March 01, 2006 5:29 PM Subject: Re: [PHP] Mailto members..? Gustav Wiberg schrieb: while ($dbArray = mysql_fet

RE: [PHP] Mailto members..?

2006-03-01 Thread Jim Moseby
> > Gustav Wiberg schrieb: > >> while ($dbArray = mysql_fetch_array($querys)) { > >> ...sendmail (from, to, htmltext...)... > >> } > > Why let PHP do all the work? If the body is all the same for all > > recipients you could send only one mail with all recipients in the > > BCC-field and only on

Re: [PHP] Mailto members..?

2006-03-01 Thread Gustav Wiberg
- Original Message - From: "Marcus Gnaß" <[EMAIL PROTECTED]> To: "Gustav Wiberg" <[EMAIL PROTECTED]> Sent: Wednesday, March 01, 2006 5:29 PM Subject: Re: [PHP] Mailto members..? Gustav Wiberg schrieb: while ($dbArray = mysql_fetch_array($querys)) {

RE: [PHP] Mailto members..?

2006-03-01 Thread Kevin Davies - Bonhurst Consulting
Others here have mentioned the use of a mailer class I can't remember the name of (phpmailer maybe?). PHPMailer is really good for sending HTML/Text/Both emails - I'm using it on a few different sites. Link: http://phpmailer.sourceforge.net/ Also, if you're going to use PHPMailer an excellent

Re: [PHP] Mailto members..?

2006-03-01 Thread Gustav Wiberg
- Original Message - From: "Kevin Davies - Bonhurst Consulting" <[EMAIL PROTECTED]> To: "'Jim Moseby'" <[EMAIL PROTECTED]>; "'Gustav Wiberg'" <[EMAIL PROTECTED]>; "'PHP General'" Sent: Wed

RE: [PHP] Mailto members..?

2006-03-01 Thread Jim Moseby
> Hi guys! > > Anyone knows of something like this, but for free? > http://www.webscriptsdirectory.com/PHP/E-Mail-Systems/Php-News > letter-Script-L1237/ > > All I want to do is to send "a html mail" to all my members at > http://www.stammis.com/ (swedish site for pedigrees). It would be a > in

[PHP] Mailto members..?

2006-03-01 Thread Gustav Wiberg
Hi guys! Anyone knows of something like this, but for free? http://www.webscriptsdirectory.com/PHP/E-Mail-Systems/Php-Newsletter-Script-L1237/ All I want to do is to send "a html mail" to all my members at http://www.stammis.com/ (swedish site for pedigrees). It would be a informative letter t

Re: [PHP] mailto code for php

2004-12-20 Thread Richard Lynch
[EMAIL PROTECTED] wrote: > here is a website http://www.business-broker.co.nz/ under > "tell a friend" is the page i need help. > There is a "your email" box where you get a reply saying > thanks for telling your friend about us msg which is ok but > where we have problem is the your "friends emai

[PHP] mailto code for php

2004-12-20 Thread agent98
here is a website http://www.business-broker.co.nz/ under "tell a friend" is the page i need help. There is a "your email" box where you get a reply saying thanks for telling your friend about us msg which is ok but where we have problem is the your "friends email" box where we want a mailto comma

RE: [PHP] mailto function to attach a photo

2001-08-28 Thread Jason Murray
I could never get MIME classes and the like to work, so I rolled my own, so to speak. It was posted here a while ago, but I have a copy on my web server @ home: http://planetkiller.shadow.net.au/mime-php.txt -- Jason Murray [EMAIL PROTECTED] Web Developer, Melbourne IT "Work now, freak later!"

RE: [PHP] mailto function to attach a photo

2001-08-28 Thread Lawrence . Sheed
fwrite($fp,"--" . $mime_boundary . "\n"); fwrite($fp,"Content-Type: " . $this->guessMIMEType($attachment_name) . "; name=\"". basename($attachment_name) . "\"\n"); fwrite($fp,"Content-Transfer-En

[PHP] mailto function to attach a photo

2001-08-28 Thread Mark Lo
Hi, I would like to know how to use the mailto function to attach a specific file. Thank you Mark -- 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: [

Re: [PHP] mailto function with this subject line filled.

2001-08-28 Thread Tyler Longren
ge - From: "Mark Lo" <[EMAIL PROTECTED]> To: "php general" <[EMAIL PROTECTED]> Sent: Tuesday, August 28, 2001 9:44 AM Subject: [PHP] mailto function with this subject line filled. > Hi, > >I would like to know how to use the mailto function c

[PHP] mailto function with this subject line filled.

2001-08-28 Thread Mark Lo
Hi, I would like to know how to use the mailto function calling the mail client and most importantly having the subject filled with something. Etc. Subject: abc inquiry Thank you Mark -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

[PHP] mailto ?

2001-02-20 Thread kaab kaoutar
Hi i have a page taht is generated dynamically and that the user may email! the question is how can the receiver receives it as "an html" file whatever email software he's using ? I thouhgt of using mailto but i need a form however i have no inputs to use it, it's worthless! Thanks _

[PHP] mailto ?

2001-02-20 Thread kaab kaoutar
Hi i have a page taht is generated dynamically and that the user may email! the question is how can the receiver receives it as "an html" file whatever email software he's using ? I thouhgt of using mailto but i need a form however i have no inputs to use it, it's worthless! Thanks _

Re: [PHP] mailTo

2001-01-22 Thread Richard Lynch
>I am wrting a php page that will write out an email message to the email address retrieved from Db. If i want to have CC function togethere with mailTo, how could I do that? Use the optional fourth argument to send Cc: header with the mail. $headers = "Cc: [EMAIL PROTECTED]\r\n"; $headers .= "C

[PHP] mailTo

2001-01-21 Thread [EMAIL PROTECTED]
I am wrting a php page that will write out an email message to the email address retrieved from Db. If i want to have CC function togethere with mailTo, how could I do that? cheers Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you set for yourself"

Re: [PHP] Mailto: tag, how do I insert line breaks..?

2001-01-17 Thread David Bouw
Hi, thanks for the help.. The \r\n trick didn't work.. You can only see this back in the source.. But, the RFC "standard??" trick did work just perfectly.!!! Thanks Ignacio, I don't anything about the RFC.. Probably some standard which describes these special chars..? Will search for it to see i

Re: [PHP] Mailto: tag, how do I insert line breaks..?

2001-01-17 Thread Ignacio Vazquez-Abrams
On Wed, 17 Jan 2001, David Bouw wrote: > Hi, > > I have a non PHP questions which probably doesn't fit in this mailling > lists, but I have a feeling that someone can help me because it is very HTML > related. > > I was busy making a small piece of PHP echo code which generates a link > which ena

Re: [PHP] Mailto: tag, how do I insert line breaks..?

2001-01-17 Thread 10,000 Screaming Monkeys
On 01/17, David Bouw rearranged the electrons to read: > Now here the non-PHP questions.. I searched everywhere, but how can I get > line breaks inserted IN the email program..?? > After the 'Dear $name,' part I would like to have 2 line breaks.. Then after > the We would like to inform you... an

[PHP] Mailto: tag, how do I insert line breaks..?

2001-01-17 Thread David Bouw
Hi, I have a non PHP questions which probably doesn't fit in this mailling lists, but I have a feeling that someone can help me because it is very HTML related. I was busy making a small piece of PHP echo code which generates a link which enables you to click this and startup your email software