[PHP] Off Subject / Feedback Needed

2009-07-06 Thread Karl James
Team, http://www.theufl.com/css/corners.css http://www.theufl.com/indexb.htm I am trying to get the rounded corners to show in the first row in the HTML table. Can someone review the code for me? I think it has something to do with the images, but I corrected the path and uploaded images.

Re: [PHP] Off Subject / Feedback Needed

2009-07-06 Thread Daniel Brown
On Mon, Jul 6, 2009 at 03:03, Karl Jameskarlja...@tampabay.rr.com wrote: Team, http://www.theufl.com/css/corners.css http://www.theufl.com/indexb.htm I am trying to get the rounded corners to show in the first row in the HTML table. Can someone review the code for me? No, Karl, and

Re: [PHP] Mail subject encoding breaks

2009-05-12 Thread Tom Worster
On 5/11/09 11:58 AM, Thodoris t...@kinetix.gr wrote: On 11 May 2009 at 18:25, Thodoris wrote: Hi gang, I am using phpmailer to send some mail notifications in an intranet I've made. This is a sample code: $e-Subject = This is δφκξγκδφη garbidge κηδφκξγσ; Hi,

[PHP] Mail subject encoding breaks

2009-05-11 Thread Thodoris
Hi gang, I am using phpmailer to send some mail notifications in an intranet I've made. This is a sample code: ?php // Include PHP Mailer require 'class/class.phpmailer.php'; // Instantiate the mailer $e = new phpmailer(); $e-From = aco...@host.gr; $e-FromName = Test; $e-Mailer = mail;

Re: [PHP] Mail subject encoding breaks

2009-05-11 Thread Ian
On 11 May 2009 at 18:25, Thodoris wrote: Hi gang, I am using phpmailer to send some mail notifications in an intranet I've made. This is a sample code: $e-Subject = This is δφκξγκδφη garbidge κηδφκξγσ; Hi, I have had success with this in the past: $subject= This is δφκξγκδφη

Re: [PHP] Mail subject encoding breaks

2009-05-11 Thread Thodoris
On 11 May 2009 at 18:25, Thodoris wrote: Hi gang, I am using phpmailer to send some mail notifications in an intranet I've made. This is a sample code: $e-Subject = This is δφκξγκδφη garbidge κηδφκξγσ; Hi, I have had success with this in the past: $subject=

Re: [PHP] Mail subject encoding problem

2009-01-31 Thread Manuel Lemos
Hello, on 01/30/2009 11:43 AM Thodoris said the following: Yes I know that this is not reasonable but using UTF-8 fails. And this seems to work in some cases. I am thinking that this has to do with PHP's internal encoding or something with the OS. I am not sure why that works this way that's

[PHP] Mail subject encoding problem

2009-01-30 Thread Thodoris
.; // $subject = mb_encode_mimeheader($subject,'iso-8859-1','B'); // Set the headers and send the e-mail $headers = 'MIME-Version: 1.0' . \r\n; $headers .= 'Content-type: text/html; charset=utf-8' . \r\n; $headers .= From: t...@foo.com\r\nreply-to: t...@foo.com\r\nx-mailer: PHP; mail($email

Re: [PHP] Mail subject encoding problem

2009-01-30 Thread Per Jessen
Thodoris wrote: I am having a FreeBSD web server for development that is working like a charm when sending mail using something like this: // Define the e-mail content $email = f...@foo,com; $subject = H εργασία: (id: 1868) έκλεισε χωρίς σχόλια.; $message = Αυτό είναι ένα τέστ. Αυτό είναι

Re: [PHP] Mail subject encoding problem

2009-01-30 Thread Thodoris
Thodoris wrote: I am having a FreeBSD web server for development that is working like a charm when sending mail using something like this: // Define the e-mail content $email = f...@foo,com; $subject = H εργασία: (id: 1868) έκλεισε χωρίς σχόλια.; $message = Αυτό είναι ένα τέστ. Αυτό είναι

Re: [PHP] Mail subject encoding problem

2009-01-30 Thread Per Jessen
Thodoris wrote: But for some reason you've specified ISO-8859-1 instead of UTF-8? /Per Jessen, Zürich Yes I know that this is not reasonable but using UTF-8 fails. Fails _how_? Put up the resulting email somewhere for us to see. (the raw email text). If your source files are UTF-8,

[PHP] phpmailer subject line wierdness

2006-03-27 Thread Mark Steudel
I know that there is a phpmailer list, but it's pretty low volume, so I hoped you all might have some ideas on this. If I set the subject line for a mail like: $mail-Subject = 'Jconnect Passover Registration Confirmation'; The email never send, but if I stick a letter between O and N it goes

Re: [PHP] phpmailer subject line wierdness

2006-03-27 Thread Chris
Mark Steudel wrote: I know that there is a phpmailer list, but it's pretty low volume, so I hoped you all might have some ideas on this. If I set the subject line for a mail like: $mail-Subject = 'Jconnect Passover Registration Confirmation'; The email never send, but if I stick a letter

Re: [PHP] Altering subject of email in a pop3 mailbox

2006-02-23 Thread IG
Chris wrote: IG wrote: Is it possible to alter a subject line (or body for that matter) of an email in a pop3 mailbox? If it's already in the mailbox, then I highly doubt you can do this. You need to do this on the way in before it gets to the account. Consider the ramifications if you

Re: [PHP] Altering subject of email in a pop3 mailbox

2006-02-23 Thread Duncan Hill
On Thursday 23 February 2006 11:49, IG wrote: IG wrote: Is it possible to alter a subject line (or body for that matter) of an email in a pop3 mailbox? Thanks- I completely see your point. How do antispam filters work on client's computers? They seem to have no problem with adding to

Re: [PHP] Altering subject of email in a pop3 mailbox

2006-02-23 Thread IG
Thanks, Nobody Special. You like filling people with confidence. We all have to start somewhere don't we? I am starting this completely from scratch and it will be quite a while before I put this into service. However thanks for the information on mail boxes. I don't have much knowledge on

[PHP] Altering subject of email in a pop3 mailbox

2006-02-22 Thread IG
Hi all. Tried to find this and can't find any info. I am writing a spam filter to run over multiple pop3 mail boxes which will work on keywords and Bayesian. With a very high score the filter will simply delete the email, with a med-high it will back the email in a 'bulk-mail' folder and

Re: [PHP] Altering subject of email in a pop3 mailbox

2006-02-22 Thread Chris
IG wrote: Is it possible to alter a subject line (or body for that matter) of an email in a pop3 mailbox? If it's already in the mailbox, then I highly doubt you can do this. You need to do this on the way in before it gets to the account. Consider the ramifications if you could: Anyone

RE: [PHP] Meaningful Subject

2004-10-11 Thread php-list
-Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Monday, October 11, 2004 8:09 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] On Monday 11 October 2004 19:41, [EMAIL PROTECTED] wrote: Never mind guys, I figured it out. I appreciate your help. Thanks for everything

[PHP] no subject

2004-08-09 Thread hino masako
@lists.php.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] No Subject

2002-12-17 Thread Peter Trotman
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: subject in big5 characters of an email can't be read in LotusNotes

2002-08-29 Thread Manuel Lemos
Hello, On 08/30/2002 01:43 AM, Ellen O'Neal wrote: I have sent an email using mail function in which the subject and email body have charset=big5. Customers with outlook express can read the big5 chinese characters without any trouble. However, people who read their emails from Lotus

[PHP] Re: subject line in mail()

2002-02-10 Thread Michael Kimsal
Kunal Jhunjhunwala wrote: Hey, I'm trying to force a subject line on the reply email of a recieved email... the recieved email is sent using the mail() function in php... can this be done? I know i can do it using html by doing : mailto:[EMAIL PROTECTED]?subject=subect comes here but not

[PHP] no subject

2001-02-23 Thread Don Johnson
Yup. Go figure. Don Johnson It works if you execute only the SELECT (without the UPDATE) ? Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) On Friday 23 February 2001 16:57, Don Johnson wrote: Yup, the data's correct. The new records all have the DownloadedDateTime as

Re: [PHP] no subject

2001-02-23 Thread Christian Reiniger
Sorry for the other (empty) mail... On Friday 23 February 2001 19:27, Don Johnson wrote: Yup. Go figure. Don Johnson It works if you execute only the SELECT (without the UPDATE) ? Then are you 100% sure that you execute the SELECT first (echo something on each query and check the order)?

Re: [PHP] Off Subject, but can't find any info elsewhere

2001-02-03 Thread Martin Thoma
Go to developers.netscape.com, there you can find newsgroups where you can get help. Martin Toby Miller schrieb: Web Developers, I know this has nothing to do with PHP, but some bright minds out there might have run across it. It's about Netscape 6 mouseovers. I've read elsewhere that

[PHP] Off Subject, but can't find any info elsewhere

2001-02-02 Thread Toby Miller
Web Developers, I know this has nothing to do with PHP, but some bright minds out there might have run across it. It's about Netscape 6 mouseovers. I've read elsewhere that Netscape 6 has problems with preloading images. I have confirmed this time and time again, but have not been able to