Re: [PHP] HTML plain text in Outlook 2007

2010-02-14 Thread Skip Evans
Ashley Sheridan wrote: That last reason could be why your email is failing! HTML email is the one place where it is actually better to code the old way with tables for markup, font tags, and very little (if any) CSS. If you do use any CSS, it's best left inline as well, as some email clients

Re: [PHP] HTML plain text in Outlook 2007

2010-02-12 Thread Skip Evans
Hey Guys, Thanks for all the info on this. Sorry for the late reply, but I got sidetracked writing the module that will send out all these nasty emails. I do have the text going on top, and I think I said, looks perfect in Evolution and Thunderbird in both text and HTML. I also read about

Re: [PHP] HTML plain text in Outlook 2007

2010-02-12 Thread Ashley Sheridan
On Fri, 2010-02-12 at 19:03 -0600, Skip Evans wrote: Hey Guys, Thanks for all the info on this. Sorry for the late reply, but I got sidetracked writing the module that will send out all these nasty emails. I do have the text going on top, and I think I said, looks perfect in

Re: [PHP] HTML plain text in Outlook 2007

2010-02-12 Thread Michael A. Peters
Ashley Sheridan wrote: That last reason could be why your email is failing! HTML email is the one place where it is actually better to code the old way with tables for markup, font tags, and very little (if any) CSS. If you do use any CSS, it's best left inline as well, as some email clients

Re: [PHP] HTML plain text in Outlook 2007

2010-02-12 Thread Robert Cummings
Michael A. Peters wrote: Ashley Sheridan wrote: That last reason could be why your email is failing! HTML email is the one place where it is actually better to code the old way with tables for markup, font tags, and very little (if any) CSS. If you do use any CSS, it's best left inline as

Re: [PHP] HTML plain text in Outlook 2007

2010-02-05 Thread Richard Quadling
On 4 February 2010 16:44, Skip Evans s...@bigskypenguin.com wrote: Hey all, First, let me say thanks for all the advice on Magento, and especially to Ryan who has used the beast and gave some great advice on skinning, links to some good docs and a book just for my designer. We'll be using and

Re: [PHP] HTML plain text in Outlook 2007

2010-02-05 Thread Phpster
Ire ently needed to do this for a client as well. I took their word doc and converted it to HTML with open office. This created a template that I just do some search and replace to fill in the criteria. This has worked very well with outlook and hotmail and gmail. Not sure if it will fit

Re: [PHP] HTML plain text in Outlook 2007

2010-02-05 Thread Ashley Sheridan
On Fri, 2010-02-05 at 08:03 -0500, Phpster wrote: Ire ently needed to do this for a client as well. I took their word doc and converted it to HTML with open office. This created a template that I just do some search and replace to fill in the criteria. This has worked very well with

Re: [PHP] HTML plain text in Outlook 2007

2010-02-05 Thread Robert Cummings
Ashley Sheridan wrote: On Thu, 2010-02-04 at 13:44 -0500, Robert Cummings wrote: What about signing yourself up to some newsletters to see how they do it? Looking at the ones I get from Facebook as an example, they use the boundary codes you mentioned, and I can't see anything particularly

[PHP] HTML plain text in Outlook 2007

2010-02-04 Thread Skip Evans
Hey all, First, let me say thanks for all the advice on Magento, and especially to Ryan who has used the beast and gave some great advice on skinning, links to some good docs and a book just for my designer. We'll be using and I'm looking forward to learning it. But anyway... I'm doing

Re: [PHP] HTML plain text in Outlook 2007

2010-02-04 Thread Ashley Sheridan
On Thu, 2010-02-04 at 10:44 -0600, Skip Evans wrote: Hey all, First, let me say thanks for all the advice on Magento, and especially to Ryan who has used the beast and gave some great advice on skinning, links to some good docs and a book just for my designer. We'll be using and I'm

Re: [PHP] HTML plain text in Outlook 2007

2010-02-04 Thread Robert Cummings
Ashley Sheridan wrote: On Thu, 2010-02-04 at 10:44 -0600, Skip Evans wrote: Hey all, First, let me say thanks for all the advice on Magento, and especially to Ryan who has used the beast and gave some great advice on skinning, links to some good docs and a book just for my designer. We'll

Re: [PHP] HTML plain text in Outlook 2007

2010-02-04 Thread Ashley Sheridan
On Thu, 2010-02-04 at 13:44 -0500, Robert Cummings wrote: Ashley Sheridan wrote: On Thu, 2010-02-04 at 10:44 -0600, Skip Evans wrote: Hey all, First, let me say thanks for all the advice on Magento, and especially to Ryan who has used the beast and gave some great advice on

[PHP] HTML and text email

2002-10-08 Thread Chris Cook
Hello all, I am trying to send out a multi-part email that is both text and HTML. The HTML is so I can embed links into the email. However, some of my clients have text-only email programs and all the HTML tags are visible. Is there a way that I can display HTML in the HTML enabled programs

Re: [PHP] HTML and text email

2002-10-08 Thread Jason Wong
On Wednesday 09 October 2002 04:26, Chris Cook wrote: Hello all, I am trying to send out a multi-part email that is both text and HTML. The HTML is so I can embed links into the email. However, some of my clients have text-only email programs and all the HTML tags are visible. Is there a

[PHP] HTML 2 TEXT

2002-09-20 Thread Tim Haynes
Does anybody know of a class or a solution to converting an HTML page to a text only page via PHP, but leaving in href links in and a certain degree of formatting. Cheers, Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] HTML 2 TEXT

2002-09-20 Thread SiTA WebMaster - VST
Try to remove all strings starting with and ending with . Be sure not to remove A href ... /A's. Also you need to format line endings via \n or BR. it might seem a little bit hard, but any other solution won't work rather than this. Tim Haynes wrote: Does anybody know of a class or a

Re: [PHP] HTML 2 TEXT

2002-09-20 Thread Justin French
There's a perfect example in the manual: http://www.php.net/manual/en/function.preg-replace.php HTH Justin on 20/09/02 9:16 PM, SiTA WebMaster - VST ([EMAIL PROTECTED]) wrote: Try to remove all strings starting with and ending with . Be sure not to remove A href ... /A's. Also you need to

Re: [PHP] HTML 2 TEXT

2002-09-20 Thread nicos
strip_tags() is the easiest way to remove HTML tags. If he wants to replace them, then he can use ereg_replace or preg_replace(). -- Nicos - CHAILLAN Nicolas [EMAIL PROTECTED] www.WorldAKT.com - Hébergement de sites Internet Justin French [EMAIL PROTECTED] a écrit dans le message de news:

Re: [PHP] HTML 2 TEXT

2002-09-20 Thread Sascha Cunz
what he really needs is to completely remove script.../script, plus many many other examples. completely removing everything outside the body would be another option, perhaps saving the contents of title.../title since a script might also occur inside the body, this would not really work

[PHP] HTML and Text emails

2002-05-24 Thread Fearless Froggie
Howdy, I've noticed that a number of online marketing companies now advertise the ability to send a combined HTML and Text email. The text email readers then apparently display these as text, and html email readers display these as html. I know how to send an html email, and a text email. But I

Re: [PHP] HTML and Text emails

2002-05-24 Thread Miguel Cruz
On Fri, 24 May 2002, Fearless Froggie wrote: I've noticed that a number of online marketing companies now advertise the ability to send a combined HTML and Text email. The text email readers then apparently display these as text, and html email readers display these as html. I know how to

[PHP] HTML to Text

2001-03-28 Thread Boget, Chris
I've looked various places (the PX, Hotscripts, etc) for a function that will take a HTML file, strip out all of the HTML and return just plain text. Does anyone know if such an animal exists? Does any one have a copy of a function that does this? Thanks for any help you can provide! Chris

Re: [PHP] HTML to Text

2001-03-28 Thread Data Driven Design
) [EMAIL PROTECTED] Sent: Wednesday, March 28, 2001 2:36 PM Subject: [PHP] HTML to Text I've looked various places (the PX, Hotscripts, etc) for a function that will take a HTML file, strip out all of the HTML and return just plain text. Does anyone know if such an animal exists? Does any one

RE: [PHP] HTML to Text

2001-03-28 Thread Boget, Chris
Isn't that what strip_tags() does? http://www.php.net/manual/en/function.strip-tags.php I looked all over the documentation and I did not see this function. Now I feel all stupid. Especially when most of my posts to the mailing list refer people to the docs... :p Thanks. Chris