Re: [Zope] Silly send mail problem

2000-07-27 Thread Brad Moulton

On Thu, 27 Jul 2000, you wrote:
 Hi all,
 
 I had a sendmail problem, whenever I send out a mail from zope, it always
 contain an empty "To" ,"From" and "Subject", but I was able to get the body
 of the mail, anyone got this problem before ??
Sorry this is probably not much help but may be related
I recieve lets say one or three in a hundred emails from the zope mailing list
that have the same symptoms
ie they arrive with No Subject, To or From
but the body contains the question or answer posted ?

 

 I'm using Zope 2.1.6 on NT and the mail server is from Lotus, and the form
 processor syntax as below :
 
 dtml-sendmail
 smtphost="mail.xyz.com"
 mailto="[EMAIL PROTECTED]"
 mailfrom="[EMAIL PROTECTED]"
 Subject="Testing from my machine"
 
 mail body
 /dtml-sendmail
 
 Thanks.
 
 Cheers
 
 Wai
 
 
 ___
 Zope maillist  -  [EMAIL PROTECTED]
 http://lists.zope.org/mailman/listinfo/zope
 **   No cross posts or HTML encoding!  **
 (Related lists - 
  http://lists.zope.org/mailman/listinfo/zope-announce
  http://lists.zope.org/mailman/listinfo/zope-dev )

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Silly send mail problem

2000-07-27 Thread Phil Harris

When using the dtml-sendmail tag you need to structure it like this:

dtml-sendmail
smtphost="mail.xyz.com"
mailto="[EMAIL PROTECTED]"
mailfrom="[EMAIL PROTECTED]"
Subject="Testing from my machine"
To: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
Subject: Testing from my machine

mail body
/dtml-sendmail

hth

Phil
[EMAIL PROTECTED]



- Original Message -
From: "Brad Moulton" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Thursday, July 27, 2000 7:23 AM
Subject: Re: [Zope] Silly send mail problem


 On Thu, 27 Jul 2000, you wrote:
  Hi all,
 
  I had a sendmail problem, whenever I send out a mail from zope, it
always
  contain an empty "To" ,"From" and "Subject", but I was able to get the
body
  of the mail, anyone got this problem before ??
 Sorry this is probably not much help but may be related
 I recieve lets say one or three in a hundred emails from the zope mailing
list
 that have the same symptoms
 ie they arrive with No Subject, To or From
 but the body contains the question or answer posted ?

 

  I'm using Zope 2.1.6 on NT and the mail server is from Lotus, and the
form
  processor syntax as below :
 
  dtml-sendmail
  smtphost="mail.xyz.com"
  mailto="[EMAIL PROTECTED]"
  mailfrom="[EMAIL PROTECTED]"
  Subject="Testing from my machine"
 
  mail body
  /dtml-sendmail
 
  Thanks.
 
  Cheers
 
  Wai
 
 
  ___
  Zope maillist  -  [EMAIL PROTECTED]
  http://lists.zope.org/mailman/listinfo/zope
  **   No cross posts or HTML encoding!  **
  (Related lists -
   http://lists.zope.org/mailman/listinfo/zope-announce
   http://lists.zope.org/mailman/listinfo/zope-dev )

 ___
 Zope maillist  -  [EMAIL PROTECTED]
 http://lists.zope.org/mailman/listinfo/zope
 **   No cross posts or HTML encoding!  **
 (Related lists -
  http://lists.zope.org/mailman/listinfo/zope-announce
  http://lists.zope.org/mailman/listinfo/zope-dev )


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Silly send mail problem

2000-07-27 Thread Hugo Ramos

- Original Message -
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, July 27, 2000 4:56 AM
Subject: [Zope] Silly send mail problem


 Hi all,

 I had a sendmail problem, whenever I send out a mail from zope, it always
 contain an empty "To" ,"From" and "Subject", but I was able to get the
body
 of the mail, anyone got this problem before ??

 dtml-sendmail
 smtphost="mail.xyz.com"
 mailto="[EMAIL PROTECTED]"
 mailfrom="[EMAIL PROTECTED]"
 Subject="Testing from my machine"

 mail body
 /dtml-sendmail


Wrong sintax... the right one is:

dtml-sendmail smtphost="mail.xyz.com"
To: destinationemail
From: your email
Subject: your subject
Date: dtml-var ZopeTime fmt=rfc822

mail body

/dtml-sendmail


=
Hugo Ramos - [EMAIL PROTECTED]
ZopersORG - http://www.zopers.org
=
Do not meddle in the affairs of programmers, for they are easy to annoy,
and have all the source code!!!


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Silly send mail problem

2000-07-27 Thread Tony McDonald

At 9:04 am +0100 27/7/00, Phil Harris wrote:
When using the dtml-sendmail tag you need to structure it like this:

dtml-sendmail
smtphost="mail.xyz.com"
mailto="[EMAIL PROTECTED]"
mailfrom="[EMAIL PROTECTED]"
Subject="Testing from my machine"
To: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
Subject: Testing from my machine

mail body
/dtml-sendmail

hth

Phil
[EMAIL PROTECTED]


...and make sure you *don't* put any spaces before the Subject:, To:, 
From: and Subject: lines, ie have them hard up against the LHS of the 
textarea box. In other words, for the sendmail tag, whitespace (or 
rather the lack of it) *is* important.

hth
tone
--
Dr Tony McDonald,  FMCC, Networked Learning Environments Project 
http://nle.ncl.ac.uk/
The Medical School, Newcastle University Tel: +44 191 222 5888
Fingerprint: 3450 876D FA41 B926 D3DD  F8C3 F2D0 C3B9 8B38 18A2

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Silly send mail problem

2000-07-26 Thread wai

Hi all,

I had a sendmail problem, whenever I send out a mail from zope, it always
contain an empty "To" ,"From" and "Subject", but I was able to get the body
of the mail, anyone got this problem before ??

I'm using Zope 2.1.6 on NT and the mail server is from Lotus, and the form
processor syntax as below :

dtml-sendmail
smtphost="mail.xyz.com"
mailto="[EMAIL PROTECTED]"
mailfrom="[EMAIL PROTECTED]"
Subject="Testing from my machine"

mail body
/dtml-sendmail

Thanks.

Cheers

Wai


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )