Re: RevMail

2010-04-21 Thread Warren Samples
use-revolution-requ...@lists.runrev.com wrote on Mon, 19 Apr 2010
07:30:49 -0500:

Date: Sun, 18 Apr 2010 19:38:24 +0200
From: Jean-Pierre Soto jean-pierre.s...@wanadoo.fr
Subject: RevMail
To: use-revolution@lists.runrev.com
Message-ID: 7bd58c3b-0330-44cd-97ac-563b339de...@wanadoo.fr
Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed

Hello,

I want to use the revMail function , but the size of text seems to be  
limited. What can I do?


Thanks

Hello :)

I don't think the idea of having a message copied to the clipboard for
pasting is really such a shameful thing. It is almost certain that you
have users who utilize web-based mail services instead of desktop
clients and launching a local client is going to be useless for those
users, for whom the copy+paste method is ideal.

I wonder, though, if maybe the smoothest user experience would come with
using smtp and sending the message directly from the application. There
are several excellent library stacks available, including one by Sarah,
which make this very easy to do. There are lots of commercial smtp relay
services and many of them are reasonably affordable for small volume
users. You could subscribe to such a service and hardwire the server
information into your app, obviating the need for your user to provide
any information other than the feedback. It may be worth consideration,
anyway.

Cheers,

Warren Samples

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail

2010-04-19 Thread Jean-Pierre Soto

Hello,

I want to send more than 20Ko text. Is there a way to do that?




Le 19 avr. 10 à 01:40, Sarah Reichelt a écrit :

You say you are using Rev 2.8, so what size of email is failing for  
you?


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail

2010-04-19 Thread Sarah Reichelt
One suggestion made to me was to put the text int eh clipboard, then
create a blank email and ask the user to paste the contents in.
It's not elegant, but it should work.

Cheers,
Sarah


On Mon, Apr 19, 2010 at 5:54 PM, Jean-Pierre Soto
jean-pierre.s...@wanadoo.fr wrote:
 Hello,

 I want to send more than 20Ko text. Is there a way to do that?




 Le 19 avr. 10 à 01:40, Sarah Reichelt a écrit :

 You say you are using Rev 2.8, so what size of email is failing for you?

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail

2010-04-19 Thread Richard Gaskin

Jean-Pierre Soto wrote:

I want to send more than 20Ko text. Is there a way to do that?


After a bit of web searching it seem Rev folks aren't the only ones bit 
by this Microsoft bug/feature.  Various limitations in IE and Outlook 
suggest it may not be possible to reliably create a new email form with 
more than somewhere between 500 and 2k chars (depending on the specifics 
of the user's setup).


Perhaps the most reliable method would be to bypass Windows altogether 
and use a CGI to send the email.


Here's the handler I use in my CGI library for sending email:

on cgiSendMail pTo, pFrom, pSubject, pMessage
  put /usr/sbin/sendmail -t into tSendMailProg
  open process tSendMailProg for write
  write From:  pFrom  cr to process tSendMailProg
  write To:  pTo  cr to process tSendMailProg
  write Subject:  pSubject  cr  cr to process tSendMailProg
  write pMessage  cr to process tSendMailProg
  close process tSendMailProg
  wait until tSendMailProg is not among the lines of the openProcesses
end cgiSendMail

If you use the POST method you should be able to send email with more 
than 2k characters.


For getting started with Rev CGIs I know of no better resource than 
Jacque's excellent guide:


http://www.hyperactivesw.com/cgitutorial/


WARNING: Writing CGIs in Rev is highly addictive and may have adverse 
effects on your productivity for at least three days once you get hooked 
and start writing all sorts of fun stuff. :)


--
 Richard Gaskin
 Fourth World
 Rev training and consulting: http://www.fourthworld.com
 Webzine for Rev developers: http://www.revjournal.com
 revJournal blog: http://revjournal.com/blog.irv
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RevMail

2010-04-18 Thread Jean-Pierre Soto

Hello,

I want to use the revMail function , but the size of text seems to be  
limited. What can I do?



Thanks

(Revolution 2.8)




___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail

2010-04-18 Thread Sarah Reichelt
On Mon, Apr 19, 2010 at 3:38 AM, Jean-Pierre Soto
jean-pierre.s...@wanadoo.fr wrote:
 Hello,

 I want to use the revMail function , but the size of text seems to be
 limited. What can I do?


I encountered this recently in Windows only, but in my tests, Rev
2.8.1 was fine, it was just more recent versions that had this
problem.
You say you are using Rev 2.8, so what size of email is failing for you?

The other problem with revMail on Windows can be accented characters
in the body of the email.

Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail in Windows

2010-04-17 Thread Sarah Reichelt
On Fri, Apr 16, 2010 at 9:36 AM, Alex Tweedly a...@tweedly.net wrote:
 Sarah Reichelt wrote:

 I can't get all the data I need in my bug report down to 1000
 characters, so does anyone know of an alternative way to send emails
 on Windows?
 I want it to go through the user's mail client as I ask them to supply
 additional information and attach screen shots. Otherwise I could use
 an irev script on my web site.


 It's kind of lame, but 
 copy the data you want to send to the clipboard,
 use revmail with a very short message   (something like   now please
 Paste in the data from the clipboard)


Thanks Alex, that is certainly a possibility.
I have stripped the error report down a lot, but there could still be
variations that make it too long, so I might add this as an extra
feature.

Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail in Windows

2010-04-15 Thread Alex Tweedly

Sarah Reichelt wrote:

I can't get all the data I need in my bug report down to 1000
characters, so does anyone know of an alternative way to send emails
on Windows?
I want it to go through the user's mail client as I ask them to supply
additional information and attach screen shots. Otherwise I could use
an irev script on my web site.
  


It's kind of lame, but 
copy the data you want to send to the clipboard,
use revmail with a very short message   (something like   now 
please Paste in the data from the clipboard)



-- Alex.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


revMail in Windows

2010-04-14 Thread Sarah Reichelt
Hi All,

I have just realised that under Windows, revMail will not send emails
over a certain size. The limit seems to vary depending on the number
of lines as well as the number of characters, but it seems that you
cannot rely on revMail to create an email with more than 1000
characters. Any when it fails, there is no error, just nothing
happens.

This means that my Windows users have been thinking they are sending
bug reports and I have not been getting them for about the last year.
Bug 7995 http://quality.runrev.com/qacenter/show_bug.cgi?id=7995 was
filed as a blocker on 24th April 2009 and is still labelled as new
with no comments from anyone at RunRev.

I have tried constructing my own mailto URL and using both launch URL
and revGoURL to activate that.

All these options work fine on my Mac, it's just Windows that causes
the problems.
I keep archived copies of old versions of Rev, and in 2.8.1, revMail
worked OK. All versions since then are displaying this problem.

I can't get all the data I need in my bug report down to 1000
characters, so does anyone know of an alternative way to send emails
on Windows?
I want it to go through the user's mail client as I ask them to supply
additional information and attach screen shots. Otherwise I could use
an irev script on my web site.

Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail in Windows

2010-04-14 Thread Mark Wieder
Sarah-

Well, that *is* depressing. I just tried out a test stack and out of
29000 chars in a text variable, 247 of them were put into the body of
an email using rev 4.0.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RevMail Does not load Mail Program on Windows

2009-12-17 Thread Brent Summerton
Using a Mac 10.6.2  RevMail function loads Email Program within application 
being design all okay - but not when exported as a standalone application and 
using a PC running Vista.  It will ONLY load the Email program if the field I 
am wanting to send is empty.  Im wanting to send the data in the field!

On EmailResults
 --Send an email using your email client…
   Put field Results into TheMessageBody
   revMail smerryl...@ach.org.au,mgra...@ach.org.au,Food Handling 
Credential, TheMessageBody
End EmailResults

I am using the $500 Enterprise 4.0.0 Edition.   I have checked under General 
that the Internet feature is selected to export with standalone windows 
application.

Is there any format to the field that I should be aware of? Locked/ Unlocked/ 
Disabled, Font? Is this a glitch when designing on Mac, exporting to Windows 
standalone?

Brent Summerton.___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail Does not load Mail Program on Windows

2009-12-17 Thread Sarah Reichelt
On Thu, Dec 17, 2009 at 6:01 PM, Brent Summerton
___bg...@virginbroadband.com.au wrote:
 Using a Mac 10.6.2  RevMail function loads Email Program within application 
 being design all okay - but not when exported as a standalone application and 
 using a PC running Vista.  It will ONLY load the Email program if the field I 
 am wanting to send is empty.  Im wanting to send the data in the field!

 On EmailResults
  --Send an email using your email client…
   Put field Results into TheMessageBody
   revMail smerryl...@ach.org.au,mgra...@ach.org.au,Food Handling 
 Credential, TheMessageBody
 End EmailResults

I seem to remember having problems if the email text contained any
accented characters. Would this apply in your case?

Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


revMail bug

2009-04-24 Thread Sadhu Nadesan
I must regretfully withdraw my comment about revMail being awesome - 
it would be if it didn't fail on messages above 1700 characters.  I 
filed a bug report.  (7995)  I still love the idea that you can spawn a 
mail message with one line of code.


-- Sadhu
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail strange behaviour in 3.0.0 (dp 9) and leopard

2008-08-04 Thread Till Bandi

Thanks!


Am 04.08.2008 um 03:11 schrieb Sarah Reichelt:

On Sat, Aug 2, 2008 at 10:48 PM, Till Bandi [EMAIL PROTECTED]  
wrote:


revMail [EMAIL PROTECTED] works fine in version 2.9.

But in Version 3.0 I get
[EMAIL PROTECTED]Content-Type:text/plain;charset=utf-8 in the  
to-Line.
(Apple Mail). If I add the other parameters of the revMail command  
(Syntax:
revMail address[,ccAddress[,mailSubject[,messageBody]]]), as long  
as the
parameters are empty I still get the same indication of the font  
etc. When I
put one (blank or any) character into the second, third or fouth  
parameter

then the to- line in Mail is correct.

Can anyone confirm this or has an explanation? (I am working with the
swiss-german localisation.)



Confirmed, reported and I found the fix.
Check the bug report http://quality.runrev.com/qacenter/show_bug.cgi?id=6865 



Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail strange behaviour in 3.0.0 (dp 9) and leopard

2008-08-02 Thread Mark Schonewille

Hi Till,

It is very well possible that revMail is broken, but I am not sure  
that we're supposed to discuss 3.0 on the use list.


Anyway, starting with Rev 2.9, I was trying to use revGoURL instead,  
but this didn't work either because the body of the message is  
encoded incorrectly. Currently, whenever I need to open an e-mail in  
my mail programme, I use revGoURL in Rev 2.8.1. I believe the syntax  
looks like this:


revGoURL [EMAIL PROTECTED] 
subject=foo[EMAIL PROTECTED]body=hello world.


You might want to report your problem to the quality center if no one  
has done so yet and let's hope that it gets fixed with the next release.


--

Economy-x-Talk
Consultancy and Software Engineering
http://economy-x-talk.com
http://www.salery.biz

Get your store on-line within minutes with Salery Web Store software.  
Download at http://www.salery.biz


Op 2-aug-2008, om 14:48 heeft Till Bandi het volgende geschreven:



revMail [EMAIL PROTECTED] works fine in version 2.9.

But in Version 3.0 I get [EMAIL PROTECTED]Content-Type:text/ 
plain;charset=utf-8 in the to-Line. (Apple Mail). If I add the  
other parameters of the revMail command (Syntax: revMail address 
[,ccAddress[,mailSubject[,messageBody]]]), as long as the  
parameters are empty I still get the same indication of the font  
etc. When I put one (blank or any) character into the second, third  
or fouth parameter then the to- line in Mail is correct.


Can anyone confirm this or has an explanation? (I am working with  
the swiss-german localisation.)


Till



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail strange behaviour in 3.0.0 (dp 9) and leopard

2008-08-02 Thread Kenji Kojima

revmail does not make a Japanese mail in Version 2.9 on MacOS.
It works fine in V.2.8.

go to url http://www.kenjikojima.com/runrev/bugs/revmailTest.rev;
I reported it.
http://quality.runrev.com/qacenter/show_bug.cgi?id=6521
--
Kenji Kojima
http://www.kenjikojima.com/




On Aug 2, 2008, at 8:48 AM, Till Bandi wrote:



revMail [EMAIL PROTECTED] works fine in version 2.9.

But in Version 3.0 I get [EMAIL PROTECTED]Content-Type:text/ 
plain;charset=utf-8 in the to-Line. (Apple Mail). If I add the  
other parameters of the revMail command (Syntax: revMail  
address[,ccAddress[,mailSubject[,messageBody]]]), as long as the  
parameters are empty I still get the same indication of the font  
etc. When I put one (blank or any) character into the second, third  
or fouth parameter then the to- line in Mail is correct.


Can anyone confirm this or has an explanation? (I am working with  
the swiss-german localisation.)


Till

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution




___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail strange behaviour in 3.0.0 (dp 9) and leopard

2008-08-02 Thread Klaus Major

Hi Till,


revMail [EMAIL PROTECTED] works fine in version 2.9.

But in Version 3.0 I get [EMAIL PROTECTED]Content-Type:text/ 
plain;charset=utf-8 in the to-Line. (Apple Mail). If I add the  
other parameters of the revMail command (Syntax: revMail  
address[,ccAddress[,mailSubject[,messageBody]]]), as long as the  
parameters are empty I still get the same indication of the font  
etc. When I put one (blank or any) character into the second, third  
or fouth parameter then the to- line in Mail is correct.


Can anyone confirm this or has an explanation? (I am working with  
the swiss-german localisation.)


I have no problems with RevMail in 2.9 on a Mac, but on windows, see  
my bugreport:

http://quality.runrev.com/qacenter/show_bug.cgi?id=6432

Not tested with 3.0 yet.


Till


Best

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


launch URL to get an e-mail with BCC, Subject and Body (was revMail and BCC)

2008-06-06 Thread Andre.Bisseret

Hi,
I just noticed that 4 answers I posted to Ken Ray, Shao Sean and Klaus  
Major, do not appear in the Archives. So I supposed they have'nt been  
received :-(((
For me here, they have been send normally; (I did not receive any  
daemon message). I am really sorry for that.


So, instead of resending them one by one,  I put together this 4  
answers hereafter (from the more recent to the least one) hoping this  
time that will be received!


Thanks a lot to Josh, Ken, Sean and Klaus who paid attention to my  
problem and helped me to solve it


Best regards from Grenoble
André
-
4/06/08 : SECOND ANSWER TO KLAUS
-


De : André Bisseret[EMAIL PROTECTED]
Date : 4 juin 2008 15:16:26 HAEC
À : How to use Revolution use-revolution@lists.runrev.com
Objet : Rép : launch URL to get an e-mail with BCC, Subject and Body  
(was revMail and BCC)



Le 4 juin 08 à 11:30, Klaus Major a écrit :


Bonjour Andre,


...
Thank you Josh for this suggestion. I am using Mail included in  
Leopard on Mac. Seems that it has not this limitation.

I just tried to add my address in To.
Unfortunately, I get the same result as for the subject and  
body fields : only texts without any special characters  
(including cr) are allowed (without URLencode ; with URLEncode, I  
get the texts but in their encoded form).


This is how Rev (revMail) deals with this problem:

on revMail pTo, pCC, pSubject, pBody
put uniDecode(uniEncode(pSubject), UTF8) into pSubject
put uniDecode(uniEncode(pBody), UTF8) into pBody
put urlEncode(pSubject) into pSubject
put urlEncode(pBody) into pBody
replace + with %20 in pSubject
replace + with %20 in pBody


Maybe this will inspire you a bit ;-)

Note: this fails completely on Windows, see Bug nr. 6432.



Viele, viele Dank Klaus,
You are great ;-)) Thanks to you, my handler is working perfectly now.

Hereafter is the solution :
---
--- I have 2 fields : one including the list of addresses separated by  
, the other where the body of the message is to be written


local tSubject,tWho,tBody,tCommand,
 
ON mouseUp
   ask What is the subject ?
   IF the result is cancel THEN exit mouseUp
   put it into tSubject
   put tSubject
   put fld TheText into tBody
   put fld addresses into tWho
   put cr  tWho after msg
  -- -- hereafter the lines I added thanks to your suggestion:
   put unidecode(uniencode(tSubject), UTF8) into tSubject
   put unidecode(uniencode(tBody), UTF8) into tBody
  -- -- before I had tried the two following lines only
   put urlencode(tSubject) into tSubject
   put urlencode(tBody) into tBody
   replace + WITH %20 in tSubject
   replace + WITH %20 in tBody
   put cr  tBody after msg
   put launch URL  quote  mailto:?BCC=;  tWho 
Subject=  tSubjectBody=  tBody  quote into tCommand

   do tCommand
END mouseUp
 
N.B. : as for revMail, since 2.9.0 it is not necessary any more to use  
uniDecode etc ..


Merci infiniment !

Ich bin jetzt ruhiger (hope it is a right expression ;-))

André

4.06.08 : FIRST ANSWER TO KLAUS
--
Le 4 juin 08 à 11:30, Klaus Major a écrit :


Bonjour Andre,


...



replace + with %20 in pSubject
replace + with %20 in pBody



Guten tag Klaus,


Maybe this will inspire you a bit ;-)


I had to abandon revMail (unfortunately) because that does not allow  
BCC.


But, sure, this give me ideas to try to adapt this to launch URL
Specially replace + with %20 could works for me (currently, when  
urlEncoding I got + instead of space).


Thanks a lot ; at least, I have something to try ;-))

best regards from Grenoble
André
--
4/06/08 ANSWER TO SEAN
--

Le 3 juin 08 à 22:53, Shao Sean a écrit :


I'll chime in now...

Andre, do you have to use an external email client? If not, you can  
use one of the Rev-based solutions (myself and Sarah have both  
written SMTP libraries).. altEmailHarness uses my SMTP library it  
does not make use of the Email Encoding library which converts  
Unicode text into ASCII based encoding for transmission through SMTP  
servers..


Hi Sean,
I thank you much for this answer.
I think I am not constrained to use an external email client.
Several days ago, I visited your site, I downloaded Media browser  
006 but, then,  I did know what to do with it ; I am surely missing  
something easy ; I am

Re: launch URL to get an e-mail with BCC, Subject and Body (was revMail and BCC)

2008-06-06 Thread Klaus Major

Bonjour Andre,


Hi,
I just noticed that 4 answers I posted to Ken Ray, Shao Sean and  
Klaus Major, do not appear in the Archives. So I supposed they  
have'nt been received :-(((
For me here, they have been send normally; (I did not receive any  
daemon message). I am really sorry for that.
So, instead of resending them one by one,  I put together this 4  
answers hereafter (from the more recent to the least one) hoping  
this time that will be received!
Thanks a lot to Josh, Ken, Sean and Klaus who paid attention to my  
problem and helped me to solve it


A votre service monsieur!


Best regards from Grenoble
André
-
4/06/08 : SECOND ANSWER TO KLAUS
-




Maybe this will inspire you a bit ;-)
Note: this fails completely on Windows, see Bug nr. 6432.

Viele, viele Dank Klaus,
You are great ;-))


I know, I know :-D


Thanks to you, my handler is working perfectly now.
...
Merci infiniment !
Ich bin jetzt ruhiger (hope it is a right expression ;-))


Almost ;-)

ruhiger = plus calme

But you certainly mean something like apaiseé?
Now I hope that's the right expression :-)


Best from germany

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: launch URL to get an e-mail with BCC, Subject and Body (was revMail and BCC)

2008-06-04 Thread Andre.Bisseret


Le 3 juin 08 à 18:43, Josh Mellicker a écrit :



On Jun 3, 2008, at 4:48 AM, Andre.Bisseret wrote:


Hi,
I did not received any e-mail from my server about this question.  
That could be due to the incident, then I dare to post it again.

Thanks a lot in advance for any help.

Meanwhile, I just noticed on the Archives site that Josh Mellicker  
answered.
Sorry Josh, I did not received your post. I thank you a lot.  As  
you suggested, I just tried altEmailHarness.rev
With it, I got e-mail where each fields are filled in, but,  
infortunately, all accented characters are suppressed :-((

So it seems working only for English language.
Furthermore, it seems that BCC is not working. When I put my  
address in BCC only, I do not receive the message.


With the email clients I have used, you have to have a primary  
recipient or the email client will not send the email.


So, I usually address myself as the main send-to and then put  
other addresses in the BCC.


I don't know if this is a limitation of these email clients, or  
email in general.


Thank you Josh for this suggestion. I am using Mail included in  
Leopard on Mac. Seems that it has not this limitation.

I just tried to add my address in To.
Unfortunately, I get the same result as for the subject and body  
fields : only texts without any special characters (including cr) are  
allowed (without URLencode ; with URLEncode, I get the texts but in  
their encoded form).


Thanks again for your attention and answers

Best regards from Grenoble
André


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: launch URL to get an e-mail with BCC, Subject and Body (was revMail and BCC)

2008-06-04 Thread Klaus Major

Bonjour Andre,


...
Thank you Josh for this suggestion. I am using Mail included in  
Leopard on Mac. Seems that it has not this limitation.

I just tried to add my address in To.
Unfortunately, I get the same result as for the subject and body  
fields : only texts without any special characters (including cr)  
are allowed (without URLencode ; with URLEncode, I get the texts but  
in their encoded form).


This is how Rev (revMail) deals with this problem:
...
on revMail pTo, pCC, pSubject, pBody
  put uniDecode(uniEncode(pSubject), UTF8) into pSubject
  put uniDecode(uniEncode(pBody), UTF8) into pBody
  put urlEncode(pSubject) into pSubject
  put urlEncode(pBody) into pBody
  replace + with %20 in pSubject
  replace + with %20 in pBody
...

Maybe this will inspire you a bit ;-)

Note: this fails completely on Windows, see Bug nr. 6432.


Thanks again for your attention and answers

Best regards from Grenoble
André


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


launch URL to get an e-mail with BCC, Subject and Body (was revMail and BCC)

2008-06-03 Thread Andre.Bisseret

Hi,
I did not received any e-mail from my server about this question. That  
could be due to the incident, then I dare to post it again.

Thanks a lot in advance for any help.

Meanwhile, I just noticed on the Archives site that Josh Mellicker  
answered.
Sorry Josh, I did not received your post. I thank you a lot.  As you  
suggested, I just tried altEmailHarness.rev
With it, I got e-mail where each fields are filled in, but,  
infortunately, all accented characters are suppressed :-((

So it seems working only for English language.
Furthermore, it seems that BCC is not working. When I put my address  
in BCC only, I do not receive the message.


MY PROBLEM :
 I need to compose e-mail with addresses in BCC. revMail does not   
allow that.
Thanks to a previous answer from Sarah Reicheit (subject was revMail  
and BCC) I am now trying to use the mailto protocol in a launch URL  
command.
(launch URL is now recommanded in 2.9.0 instead of revgourl which  
still works but which is deprecated).


 In order to fill in the three fields of an e-mail (BCC, Subject and  
Body), I have been struggling  with (s, , ? etc.)

After hours of trials and errors I succeeded (partly) :

 I have three variables :
 tWho : contains the list of addresses to be put in the BCC field;
tSubject : contains the subject of the e-mail
tBody : contains the text of the e-mail

Then the following is working
put launch URL  quote  mailto:?BCC=;  tWhoSubject=   
tSubjectBody=  tBody  quote into tCommand

do tCommand

BUT this is working only if tSubject and tBody do not include any  
special characters (including CR; so that tBpdy can't have more than  
one line).


Now my problem is with URLencode
I tried  to URLencode tSubject and tBody
Unfortunately, that does not works :
With one line only in tSubject as well as in tBody (and no special  
characters), if I URLencode them, I get an e-mail but with the

URLencoded text !
For example I get : Our+next+meeting+in+Paris :-((

And furthermore, if tSubject include at leat one accented character  
then no e-mail shows up
if tBody includes at least one accented character, or several lines,  
then the Body of the e-mail is empty


So, the only case where I get a complete e-mail is when the texts of  
tSubject and tBody have only one line each, include not any special  
character and are not URLencoded.


Seems I am missing something about URLencode?

Any help would be very much appreciated

Best regards from Grenoble
André
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: launch URL to get an e-mail with BCC, Subject and Body (was revMail and BCC)

2008-06-03 Thread Ken Ray

 Seems I am missing something about URLencode?

Actually, it may be that you're missing something with mailto:;... I have
discovered that different email apps require slightly different data in a
mailto:; construct in order for it to work. Here's the two exceptions I'm
aware of:

- Mozilla Thunderbird requires commas between addresses (in the To, CC, and
BCC), and other apps use the semicolon.

- Outlook  and Outlook Express require a space or a semicolon for CCs or
BCCs if there aren't any (i.e. AFAIK you need to include them in the URL
string.

Just curious - what email client are you trying to launch?

(FYI, I have been using a modified version of revGoURL  instead of 'launch'
due to legacy reasons, and so I don't know if there's any gotchas with
using launch for sending emails.)

Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: launch URL to get an e-mail with BCC, Subject and Body (was revMail and BCC)

2008-06-03 Thread Josh Mellicker


On Jun 3, 2008, at 4:48 AM, Andre.Bisseret wrote:


Hi,
I did not received any e-mail from my server about this question.  
That could be due to the incident, then I dare to post it again.

Thanks a lot in advance for any help.

Meanwhile, I just noticed on the Archives site that Josh Mellicker  
answered.
Sorry Josh, I did not received your post. I thank you a lot.  As you  
suggested, I just tried altEmailHarness.rev
With it, I got e-mail where each fields are filled in, but,  
infortunately, all accented characters are suppressed :-((

So it seems working only for English language.
Furthermore, it seems that BCC is not working. When I put my address  
in BCC only, I do not receive the message.


With the email clients I have used, you have to have a primary  
recipient or the email client will not send the email.


So, I usually address myself as the main send-to and then put other  
addresses in the BCC.


I don't know if this is a limitation of these email clients, or email  
in general.

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: launch URL to get an e-mail with BCC, Subject and Body (was revMail and BCC)

2008-06-03 Thread Shao Sean

I'll chime in now...

Andre, do you have to use an external email client? If not, you can  
use one of the Rev-based solutions (myself and Sarah have both  
written SMTP libraries).. altEmailHarness uses my SMTP library it  
does not make use of the Email Encoding library which converts  
Unicode text into ASCII based encoding for transmission through SMTP  
servers..


Josh, not being able to send emails without a To address is a  
limitation of the software as the email server still gets all the  
email addresses and strips out any addresses that are listed in the  
BCC header field..


I'll try to set aside some time in the near future to get the SMTP  
and Email Encoding libraries rewritten for 2.9 so if anyone has any  
feedback from the old versions please email me and I'll see what I  
can do..



-Sean
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


launch URL to get an e-mail with BCC, Subject and Body (was revMail and BCC)

2008-06-02 Thread Andre.Bisseret

Hi,
(Since yesterday I did not receive any message from the list?? I hope  
this message will be received)

--

I need to compose e-mail with addresses in BCC. revMail does not allow  
that.
Thanks to an answer from Sarah Reicheit I am now trying to use the  
mailto protocol in a launch URL command.
(launch URL is now recommanded in 2.9.0 instead of revgourl which  
still works but which is deprecated).


In order to fill in the three fields of an e-mail (BCC, Subject and  
Body), I was struggling  with (s, , ? etc.)

After hours of trials and errors I succeeded (partly) :

I have three variables :
tWho : contains the list of addresses to be put in the BCC field;
tSubject : contains the subject of the e-mail
tBody : contains the text of the e-mail

Then the following is working
 put launch URL  quote  mailto:?BCC=;  tWhoSubject=  
 tSubjectBody=  tBody  quote into tCommand

 do tCommand

BUT this is working only if tSubject and tBody do not include any  
special characters (including CR; so that tBpdy can't have more than  
one line).


Now my problem is with URLencode

I tried  to URLencode tSubject and tBody
Unfortunately, that does not works :
With one line only in tSubject as well as in tBody (and not special  
characters), if I URLencode them, I get an e-mail but with the  
URLencoded text !


For example I get : Our+next+meeting+in+Paris :-((

And furthermore, if tSubject include at leat one accented character  
then no e-mail shows up
if tBody includes at least one accented character, or several lines,  
then the Body of the e-mail is empty


So, the only case where I get a complete e-mail is when the texts of  
tSubject and tBody have only one line each, include not any special  
character and are not URLencoded.

Seems I am missing something about URLencode?

Any help would be very much appreciated

Best regards from Grenoble
André


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: launch URL to get an e-mail with BCC, Subject and Body (was revMail and BCC)

2008-06-02 Thread Josh Mellicker

Have you checked out altEmailHarness.rev?

I tried it once and it worked perfectly.

http://www.altuit.com/webs/altuit2/RunRev/Downloads.htm



On Jun 2, 2008, at 3:36 AM, Andre.Bisseret wrote:


Hi,
(Since yesterday I did not receive any message from the list?? I  
hope this message will be received)

--

I need to compose e-mail with addresses in BCC. revMail does not  
allow that.
Thanks to an answer from Sarah Reicheit I am now trying to use the  
mailto protocol in a launch URL command.
(launch URL is now recommanded in 2.9.0 instead of revgourl which  
still works but which is deprecated).


In order to fill in the three fields of an e-mail (BCC, Subject and  
Body), I was struggling  with (s, , ? etc.)

After hours of trials and errors I succeeded (partly) :

I have three variables :
tWho : contains the list of addresses to be put in the BCC field;
tSubject : contains the subject of the e-mail
tBody : contains the text of the e-mail

Then the following is working
put launch URL  quote  mailto:?BCC=;  tWhoSubject=  
 tSubjectBody=  tBody  quote into tCommand

do tCommand

BUT this is working only if tSubject and tBody do not include any  
special characters (including CR; so that tBpdy can't have more than  
one line).


Now my problem is with URLencode

I tried  to URLencode tSubject and tBody
Unfortunately, that does not works :
With one line only in tSubject as well as in tBody (and not special  
characters), if I URLencode them, I get an e-mail but with the  
URLencoded text !


For example I get : Our+next+meeting+in+Paris :-((

And furthermore, if tSubject include at leat one accented character  
then no e-mail shows up
if tBody includes at least one accented character, or several lines,  
then the Body of the e-mail is empty


So, the only case where I get a complete e-mail is when the texts of  
tSubject and tBody have only one line each, include not any special  
character and are not URLencoded.

Seems I am missing something about URLencode?

Any help would be very much appreciated

Best regards from Grenoble
André


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


revMail and Bcc

2008-05-30 Thread Andre.Bisseret

Hi,
I would like to create e-mails to be sent to a liste of e-mail  
addresses in blind carbon copy (Bcc).
It is not possible with the revMail command, where there is places  
only for address and ccAddress.
Is there another way to put addresses (by program) in the Bcc field?  
or should I ask users to manually cut and paste the addresses from  
To to Bcc before sending the e-mail? :-((


Thanks in advance for any idea and help

Best regards from Grenoble
André
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail and Bcc

2008-05-30 Thread Sarah Reichelt
On Fri, May 30, 2008 at 7:45 PM, Andre.Bisseret [EMAIL PROTECTED] wrote:
 Hi,
 I would like to create e-mails to be sent to a liste of e-mail addresses in
 blind carbon copy (Bcc).
 It is not possible with the revMail command, where there is places only for
 address and ccAddress.
 Is there another way to put addresses (by program) in the Bcc field? or
 should I ask users to manually cut and paste the addresses from To to Bcc
 before sending the e-mail? :-((


At least on a Mac, this works:

revGoURL mailto:?Subject=BCC
test[EMAIL PROTECTED],[EMAIL PROTECTED]Body=Here is a BCC
email.

Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail and Bcc

2008-05-30 Thread Klaus Major

Hi Sarah,

On Fri, May 30, 2008 at 7:45 PM, Andre.Bisseret [EMAIL PROTECTED] 
 wrote:

Hi,
I would like to create e-mails to be sent to a liste of e-mail  
addresses in

blind carbon copy (Bcc).
It is not possible with the revMail command, where there is places  
only for

address and ccAddress.
Is there another way to put addresses (by program) in the Bcc  
field? or
should I ask users to manually cut and paste the addresses from  
To to Bcc

before sending the e-mail? :-((

At least on a Mac, this works:

revGoURL mailto:?Subject=BCC
test[EMAIL PROTECTED],[EMAIL PROTECTED]Body=Here is a BCC
email.


Great thanks!

Do you or anyone else know where to add a file attachment into this  
string?

Know what I mean?

I lalready found out that is a string that revMail produces and then  
revMail fires a
launch url with tha tnamely string, so one could add items like  
attachment that revMail

does not supply.

Thanks a lot in advance!


Cheers,
Sarah


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re-2: revMail and Bcc

2008-05-30 Thread runrev260805
Hi Klaus,

as far as i know, attachments with revmail or launch url are not possible.
That´s why i and some others placed an enhancement request for revmail in the
qualitycenter.

See
http://quality.runrev.com/qacenter/show_bug.cgi?id=4151
http://quality.runrev.com/qacenter/show_bug.cgi?id=105


Regards,

Matthias

 Original Message 
Subject: Re: revMail and Bcc (30-Mai-2008 15:44)
From:Klaus Major [EMAIL PROTECTED]
To:  [EMAIL PROTECTED]

 Hi Sarah,
 
  On Fri, May 30, 2008 at 7:45 PM, Andre.Bisseret [EMAIL PROTECTED] 
   wrote:
  Hi,
  I would like to create e-mails to be sent to a liste of e-mail  
  addresses in
  blind carbon copy (Bcc).
  It is not possible with the revMail command, where there is places  
  only for
  address and ccAddress.
  Is there another way to put addresses (by program) in the Bcc  
  field? or
  should I ask users to manually cut and paste the addresses from  
  To to Bcc
  before sending the e-mail? :-((
  At least on a Mac, this works:
 
  revGoURL mailto:?Subject=BCC
  test[EMAIL PROTECTED],[EMAIL PROTECTED]Body=Here is a BCC
  email.
 
 Great thanks!
 
 Do you or anyone else know where to add a file attachment into this  
 string?
 Know what I mean?
 
 I lalready found out that is a string that revMail produces and then  
 revMail fires a
 launch url with tha tnamely string, so one could add items like  
 attachment that revMail
 does not supply.
 
 Thanks a lot in advance!
 
  Cheers,
  Sarah
 
 Regards
 
 Klaus Major
 [EMAIL PROTECTED]
 http://www.major-k.de
 
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your 
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 To: use-revolution@lists.runrev.com


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Re-2: revMail and Bcc

2008-05-30 Thread Klaus Major

Hi Matthias,


Hi Klaus,

as far as i know, attachments with revmail or launch url are not  
possible.
That´s why i and some others placed an enhancement request for  
revmail in the

qualitycenter.

See
http://quality.runrev.com/qacenter/show_bug.cgi?id=4151
http://quality.runrev.com/qacenter/show_bug.cgi?id=105


Ah, I see, too bad.

Thanks for the info.


Regards,

Matthias


Best

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RevMail Broken on OSX Leopard in 2.9?

2008-02-14 Thread Sivakatirswami

it is just me or is this broken on the Mac?

revMail tEmail,,,

?

It use to work, even in Thunderbird... now I get garbage in the To fields
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail Broken on OSX Leopard in 2.9?

2008-02-14 Thread Sarah Reichelt
On Fri, Feb 15, 2008 at 8:25 AM, Sivakatirswami [EMAIL PROTECTED] wrote:
 it is just me or is this broken on the Mac?

   revMail tEmail,,,

Works fine here: Mac OS X 10.5.2, Rev 2.9.0-dp-3, Apple Mail 3.2.
Sorry, I don't have Thunderbird installed to test.

However you have quoted tEmail where it looks more like a variable
name. You are actually going to get the text tEmail in the To field of
your email, not whatever is in the tEmail variable.

Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


how to use revMail with texts including accents (ex : in French)

2007-10-19 Thread André.Bisseret

Hi !
Mac OS X 10.4.10 ; Rev 2.8.1.

For several hours now, I have been trying to use
 revMail address,ccAddress,mailSubject,messageBody
to allow the user to send a mail from Rev gathering data from fields.

I learned from a post on this list from Klaus Major (answering a  
question about umlaut) that I should use :


put unidecode(the unicodeText of fld tBody,UTF8) into tBody

So I use that (a bit like a magic I must confess !)
For a while I got an error from GLX2 when compiling ; (magic again  
(for me), I declared UTF8 as a global and then it compile without  
any error message


Well, that  works but only when I have not any accent (acute, grave,  
circumflex, umlaut etc.) or quote ... in my texts.
 As soon as, at least, one accent, (or quote...)  is in the fields  
that are used to complete  the Subject or the Body of the  
message, I get an empty message (only the mail address).


Any idea on what I am missing ? (some setting in Rev, or Mac, ??)

Thanks a lot in advance

Best regards from Grenoble
André



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: how to use revMail with texts including accents (ex : in French)

2007-10-19 Thread André.Bisseret

Andre,
Thank you very much for this very quick and efficient answer

All is running well now ! (Ouf !)

Thanks to you, I am going to sleep like a baby ;-)))

Best regards
André (with an acute accent ;-


Le 19 oct. 07 à 23:17, Andre Garzia a écrit :


Bon soir André,

the UTF8 part needs to be quoted, that parameter is a string.

it should be:

put unidecode(the unicodeText of fld tBody,UTF8) into tBody

cheers
andre

On 10/19/07, André.Bisseret [EMAIL PROTECTED] wrote:

Hi !
Mac OS X 10.4.10 ; Rev 2.8.1.

For several hours now, I have been trying to use
 revMail address,ccAddress,mailSubject,messageBody
to allow the user to send a mail from Rev gathering data from fields.

I learned from a post on this list from Klaus Major (answering a
question about umlaut) that I should use :

put unidecode(the unicodeText of fld tBody,UTF8) into tBody

So I use that (a bit like a magic I must confess !)
For a while I got an error from GLX2 when compiling ; (magic again
(for me), I declared UTF8 as a global and then it compile without
any error message

Well, that  works but only when I have not any accent (acute, grave,
circumflex, umlaut etc.) or quote ... in my texts.
  As soon as, at least, one accent, (or quote...)  is in the fields
that are used to complete  the Subject or the Body of the
message, I get an empty message (only the mail address).

Any idea on what I am missing ? (some setting in Rev, or Mac, ??)

Thanks a lot in advance

Best regards from Grenoble
André



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution





___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: how to use revMail with texts including accents (ex : in French)

2007-10-19 Thread Andre Garzia
Bon soir André,

the UTF8 part needs to be quoted, that parameter is a string.

it should be:

put unidecode(the unicodeText of fld tBody,UTF8) into tBody

cheers
andre

On 10/19/07, André.Bisseret [EMAIL PROTECTED] wrote:
 Hi !
 Mac OS X 10.4.10 ; Rev 2.8.1.

 For several hours now, I have been trying to use
  revMail address,ccAddress,mailSubject,messageBody
 to allow the user to send a mail from Rev gathering data from fields.

 I learned from a post on this list from Klaus Major (answering a
 question about umlaut) that I should use :

 put unidecode(the unicodeText of fld tBody,UTF8) into tBody

 So I use that (a bit like a magic I must confess !)
 For a while I got an error from GLX2 when compiling ; (magic again
 (for me), I declared UTF8 as a global and then it compile without
 any error message

 Well, that  works but only when I have not any accent (acute, grave,
 circumflex, umlaut etc.) or quote ... in my texts.
   As soon as, at least, one accent, (or quote...)  is in the fields
 that are used to complete  the Subject or the Body of the
 message, I get an empty message (only the mail address).

 Any idea on what I am missing ? (some setting in Rev, or Mac, ??)

 Thanks a lot in advance

 Best regards from Grenoble
 André



 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail question

2007-10-11 Thread Ken Ray
On Wed, 10 Oct 2007 22:09:41 -0700, Phil Davis wrote:

 What does revMail return or do when used on a machine with no 
 [default] email client? Has anyone done this?

Just curious... how is this possible? On Macs it's automatically Mail, 
on on Windows it's automatically Outlook Express on fresh installs... 
are you thinking Linux?

Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail question

2007-10-11 Thread Eric Chatonet

Hi Ken,

Le 11 oct. 07 à 20:31, Ken Ray a écrit :


On Wed, 10 Oct 2007 22:09:41 -0700, Phil Davis wrote:


What does revMail return or do when used on a machine with no
[default] email client? Has anyone done this?


Just curious... how is this possible? On Macs it's automatically Mail,
on on Windows it's automatically Outlook Express on fresh installs...
are you thinking Linux?


I have a Vista machine and, as I use it to test my Rev projects only,  
it's as it was shipped*.
When using revMail command, I get a message telling my email default  
client has not been specified.


Best regards from Paris,
Eric Chatonet.

Plugins and tutorials for Revolution: http://www.sosmartsoftware.com/
Email: [EMAIL PROTECTED]/

* Intel Q6600 Dual Core Quad processor 2.4 GHz with Vista Premium. 
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail question

2007-10-11 Thread Derek Bump
Eric,

Try implementing the bug fix I posted for the bug related to the revMail
and revGoURL commands on Windows Vista:

http://quality.runrev.com/qacenter/show_bug.cgi?id=5286

The fix requires you to patch the Common Library.  If you don't know how
to do that, let me know and I'll email you a fix.


Derek Bump
Dreamscape Software
http://www.dreamscapesoftware.com


Eric Chatonet wrote:
 I have a Vista machine and, as I use it to test my Rev projects only,
 it's as it was shipped*.
 When using revMail command, I get a message telling my email default
 client has not been specified.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail question

2007-10-11 Thread Eric Chatonet

Derek,

To be frank I did not mind: I just noticed and reported :-)
But you are right:
I had a look at your Bugzilla entries:
Yes, I hope this will be fixed in 2.9 GM.
Thanks for this clarification.

Le 11 oct. 07 à 21:28, Derek Bump a écrit :


Eric,

Try implementing the bug fix I posted for the bug related to the  
revMail

and revGoURL commands on Windows Vista:

http://quality.runrev.com/qacenter/show_bug.cgi?id=5286

The fix requires you to patch the Common Library.  If you don't  
know how

to do that, let me know and I'll email you a fix.


Derek Bump
Dreamscape Software
http://www.dreamscapesoftware.com


Eric Chatonet wrote:

I have a Vista machine and, as I use it to test my Rev projects only,
it's as it was shipped*.
When using revMail command, I get a message telling my email default
client has not been specified.



Best regards from Paris,
Eric Chatonet.

Plugins and tutorials for Revolution: http://www.sosmartsoftware.com/
Email: [EMAIL PROTECTED]/



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail question

2007-10-11 Thread Phil Davis

Ken Ray wrote:

On Wed, 10 Oct 2007 22:09:41 -0700, Phil Davis wrote:

  
What does revMail return or do when used on a machine with no 
[default] email client? Has anyone done this?



Just curious... how is this possible? On Macs it's automatically Mail, 
on on Windows it's automatically Outlook Express on fresh installs... 
are you thinking Linux?
  


I was thinking Mac. I've never tried it because (as you point out) all 
Win  Mac computers have a default email client, and in my world they've 
all been set up for use. I suppose if you have a computer where the 
email client has never been used, that would qualify. In that case 
(until 2.9 GM?) you would expect a message like the one Eric got, right?


Thanks everyone.

Phil

Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail question

2007-10-11 Thread Richard Gaskin

Phil Davis wrote:

I suppose if you have a computer where the 
email client has never been used, that would qualify.


Has such a system ever been shipped in the last decade?

--
 Richard Gaskin
 Managing Editor, revJournal
 ___
 Rev tips, tutorials and more: http://www.revJournal.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail question

2007-10-11 Thread Björnke von Gierke


On 12 Oct 2007, at 02:17, Richard Gaskin wrote:


Phil Davis wrote:

I suppose if you have a computer where the email client has never 
been used, that would qualify.


Has such a system ever been shipped in the last decade?


never used does not equal not installed.

Actually, quite some people I know do not use Outlook Express, relying 
exclusively on free web based e-Mail services. On the other side, these 
are not the people to try to install any software, most of the time.


--

official ChatRev page:
http://chatrev.bjoernke.com

Chat with other RunRev developers:
go stack URL http://homepage.mac.com/bvg/chatrev1.3.rev;

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail question

2007-10-11 Thread Chipp Walters
Not sure I agree. I use gMail exclusively, and know tons of others who
do too-- and we try and install software all the time. There is an
option for gMail so it will 'look' like the default email client and
launch just as Outlook.

On 10/11/07, Björnke von Gierke [EMAIL PROTECTED] wrote:

 Actually, quite some people I know do not use Outlook Express, relying
 exclusively on free web based e-Mail services. On the other side, these
 are not the people to try to install any software, most of the time.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


revMail question

2007-10-10 Thread Phil Davis
What does revMail return or do when used on a machine with no [default] email 
client? Has anyone done this?


Thanks -
Phil Davis
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail question

2007-10-10 Thread Derek Bump
Interesting question Phil.  I'm not sure about how this would be handled
on a Mac, but on Windows I'm sure that MS Outlook Express will *always*
be the default email client if none is specified within the system.

I would imagine that that only way to not have a default email client on
Windows would be to remove those specific keys from the Registry.

As a note for reference, on Windows Vista, the default email client is
now specified in 2 locations.  The first location is the same old
location from previous versions of Windows (This allows MS to ensure
that programs that don't handle the updated change will still work).
The second location is where the *true* default email program info is
held.  There's a fix I posted for this on the Rev Quality Control
Center, but the whole url launching mechanism is getting updated within
a new version so it shouldn't be an issue anymore.


Derek Bump
Dreamscape Software
http://www.dreamscapesoftware.com/


Phil Davis wrote:
 What does revMail return or do when used on a machine with no [default]
 email client? Has anyone done this?
 
 Thanks -
 Phil Davis
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail with Umlauts in Bodytext?

2007-08-27 Thread Klaus Major

Hi all,



Hi friends,

I am sure this has been answered some time in the past, but what  
can I do

to use the revMail command with Umlauts in the body?

This does work:
...
revMail [EMAIL PROTECTED],,The subject,Something without  
Umlauts in it...

...

This does NOT work:
...
revMail [EMAIL PROTECTED],,The subject,Sömething with Ümläüts  
in it...

...

A mail is being generated, but the BODY is empty.
Thanks in advance.


no hints anyone? C'mon, please! :-)


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail with Umlauts in Bodytext?

2007-08-27 Thread Scott Morrow
I'd be interested in this, too.  Currently I've settled on only  
allowing low ascii into the body parameter.

-Scott

On Aug 27, 2007, at 1:30 AM, Klaus Major wrote:


Hi all,



Hi friends,

I am sure this has been answered some time in the past, but what  
can I do

to use the revMail command with Umlauts in the body?

This does work:
...
revMail [EMAIL PROTECTED],,The subject,Something without  
Umlauts in it...

...

This does NOT work:
...
revMail [EMAIL PROTECTED],,The subject,Sömething with  
Ümläüts in it...

...

A mail is being generated, but the BODY is empty.
Thanks in advance.


no hints anyone? C'mon, please! :-)


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail with Umlauts in Bodytext?

2007-08-27 Thread Kenji Kojima

Hi,

This is Japanese way.
I think you can use this on MacOSX, But I don't know on Windows.


 put fld tAddress into tAddress
  put fld tCc into tCc
  if platForm() is MacOS then
put unidecode(the unicodeText of fld tSubject, UTF8) into  
tSubject

put unidecode(the unicodeText of fld tBody,UTF8) into tBody
  else
put unidecode(the unicodeText of fld tSubject, Japanese) into  
tSubject

put unidecode(the unicodeText of fld tBody,Japanese) into tBody
  end if
  revMail tAddress,tCc,tSubject,tBody

--
Kenji Kojima
http://www.kenjikojima.com/





On Aug 27, 2007, at 4:30 AM, Klaus Major wrote:


Hi all,



Hi friends,

I am sure this has been answered some time in the past, but what  
can I do

to use the revMail command with Umlauts in the body?

This does work:
...
revMail [EMAIL PROTECTED],,The subject,Something without  
Umlauts in it...

...

This does NOT work:
...
revMail [EMAIL PROTECTED],,The subject,Sömething with  
Ümläüts in it...

...

A mail is being generated, but the BODY is empty.
Thanks in advance.


no hints anyone? C'mon, please! :-)


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail with Umlauts in Bodytext?

2007-08-27 Thread Klaus Major

Hi Kenji,


Hi,

This is Japanese way.
I think you can use this on MacOSX, But I don't know on Windows.

 put fld tAddress into tAddress
  put fld tCc into tCc
  if platForm() is MacOS then
put unidecode(the unicodeText of fld tSubject, UTF8) into  
tSubject

put unidecode(the unicodeText of fld tBody,UTF8) into tBody


GREAT! This (UTF8) does the trick with umlauts and accents!


  else
put unidecode(the unicodeText of fld tSubject, Japanese) into  
tSubject

put unidecode(the unicodeText of fld tBody,Japanese) into tBody
  end if


Will check on windows later...


  revMail tAddress,tCc,tSubject,tBody
--
Kenji Kojima
http://www.kenjikojima.com/


Domo arrigato, Kojima-san! :-)


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail with Umlauts in Bodytext?

2007-08-27 Thread Trevor DeVore

On Aug 27, 2007, at 4:30 AM, Klaus Major wrote:

I am sure this has been answered some time in the past, but what  
can I do

to use the revMail command with Umlauts in the body?

This does work:
...
revMail [EMAIL PROTECTED],,The subject,Something without  
Umlauts in it...

...

This does NOT work:
...
revMail [EMAIL PROTECTED],,The subject,Sömething with  
Ümläüts in it...

...

A mail is being generated, but the BODY is empty.
Thanks in advance.


no hints anyone? C'mon, please! :-)


You are trying this on OS X? If so I seem to recall coming across  
this issue a long time ago and tracking it down to an AppleScript  
issue. I don't remember any more than that though.


--
Trevor DeVore
Blue Mango Learning Systems
www.bluemangolearning.com-www.screensteps.com


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail with Umlauts in Bodytext?

2007-08-27 Thread Klaus Major

Hi Trevor,


On Aug 27, 2007, at 4:30 AM, Klaus Major wrote:
I am sure this has been answered some time in the past, but what  
can I do

to use the revMail command with Umlauts in the body?
This does work:
...
revMail [EMAIL PROTECTED],,The subject,Something without  
Umlauts in it...

...
This does NOT work:
...
revMail [EMAIL PROTECTED],,The subject,Sömething with  
Ümläüts in it...

...
A mail is being generated, but the BODY is empty.
Thanks in advance.

no hints anyone? C'mon, please! :-)
You are trying this on OS X? If so I seem to recall coming across  
this issue a long time ago and tracking it down to an AppleScript  
issue. I don't remember any more than that though.


Yes, on OS X, but this has been already solved, please see Kenjis  
post from 14:15.


Does work with:
...
  put unidecode(the unicodeText of fld tBody,UTF8) into tBody
  revmail tAddress,tCc,tSubject,tBody
...

although I have not the slightest idea WHY it does work this way :-)


--
Trevor DeVore
Blue Mango Learning Systems
www.bluemangolearning.com-www.screensteps.com


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


revMail with Umlauts in Bodytext?

2007-08-24 Thread Klaus Major

Hi friends,

I am sure this has been answered some time in the past, but what can  
I do

to use the revMail command with Umlauts in the body?

This does work:
...
revMail [EMAIL PROTECTED],,The subject,Something without  
Umlauts in it...

...

This does NOT work:
...
revMail [EMAIL PROTECTED],,The subject,Sömething with Ümläüts  
in it...

...

A mail is being generated, but the BODY is empty.
Thanks in advance.


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Automatic mail send (RevMail?)

2007-07-03 Thread Andre Garzia

Shao Sean library works great. My library which is available on RevOnline is
to be used on just one case, when you don't have SMTP configuration
available so it acts as the SMTP mailer, this works with some servers but
don't work with others because some server will do a reverse MX records
check in the IP that is sending the email to see if it can be a SMTP mailer,
which usually it can't, so the mail will be rejected as span. I use my
library for I know that .Mac allows anything thru and I am using it only to
send email to me :-)
For error reporting, I don't recommend sending email from the app but using
a CGI call that act as a conduit to the email. Firewalls or complex networks
make sending emails not the most trivial task in the world, it's better to
use something like:

   post TheErrorReport to URL TheErrorCGIURL

And this CGI can then dispatch the mail for you. This way you have a clear
and flexible solution, for example, what happens when you change emails or
are overquota with a solution that simply sends emails, you can't patch
everyone. I recommend using a CGI.

Also with the CGI approach you can gather statistical data and mine this
data for stuff to achieve your goals.

Cheers
andre

On 7/2/07, Mark Smith [EMAIL PROTECTED] wrote:


I have an app which uses Shao Seans libSmtp to send email everyday,
and it's been working perfectly for at least a year.

Best,

Mark

On 2 Jul 2007, at 18:57, Scott Rossi wrote:

 Recently, Beynon, Rob wrote:

 Any ideas about sending an email automatically? (I will program
 the entire
 content, including the body in plain text).

 Andre Garzia wrote a mail stack (SMTP Raw) some time ago that
 handles mail
 within Rev (no external mail app needed).  I don't see his stack
 posted
 anywhere but you could email him.  [EMAIL PROTECTED]

 Also, Shao Sean has written a stack called libEmail (perhaps this
 is now
 called SMTP Library?) which I haven't used but also might be an
 option.
 http://shaosean.tk

 Regards,

 Scott Rossi
 Creative Director
 Tactile Media, Multimedia  Design


 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Automatic mail send (RevMail?)

2007-07-02 Thread Beynon, Rob
HI All, 

 

I'm writing an instrument error reporting application and I'd like the bug 
report page to automatically send an email, via our smtp/imap mail server, to a 
recipient. I understand that revMail invokes a client, but because these 
machines aren't set up for email, this is inconvenient. 

 

Any ideas about sending an email automatically? (I will program the entire 
content, including the body in plain text).

Is there a PC shell command that I could use that could be called to automate 
the process?

 

Thanks in advance

Rob

 



Prof R J Beynon[h]
Proteomics and Functional Genomics Group
Faculty of Veterinary Science
University of Liverpool
Crown Street, Liverpool L69 7ZJ



Phone: +44 151 794 4312

Fax: +44 151 794 4243

Email: [EMAIL PROTECTED]

http://www.liv.ac.uk/pfg



 

This email was sent on Mon, 02 Jul, 2007 at 6:29 PM.



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Automatic mail send (RevMail?)

2007-07-02 Thread Scott Rossi
Recently, Beynon, Rob wrote:

 Any ideas about sending an email automatically? (I will program the entire
 content, including the body in plain text).

Andre Garzia wrote a mail stack (SMTP Raw) some time ago that handles mail
within Rev (no external mail app needed).  I don't see his stack posted
anywhere but you could email him.  [EMAIL PROTECTED]

Also, Shao Sean has written a stack called libEmail (perhaps this is now
called SMTP Library?) which I haven't used but also might be an option.
http://shaosean.tk

Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia  Design


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Automatic mail send (RevMail?)

2007-07-02 Thread Mark Smith
I have an app which uses Shao Seans libSmtp to send email everyday,  
and it's been working perfectly for at least a year.


Best,

Mark

On 2 Jul 2007, at 18:57, Scott Rossi wrote:


Recently, Beynon, Rob wrote:

Any ideas about sending an email automatically? (I will program  
the entire

content, including the body in plain text).


Andre Garzia wrote a mail stack (SMTP Raw) some time ago that  
handles mail
within Rev (no external mail app needed).  I don't see his stack  
posted

anywhere but you could email him.  [EMAIL PROTECTED]

Also, Shao Sean has written a stack called libEmail (perhaps this  
is now
called SMTP Library?) which I haven't used but also might be an  
option.

http://shaosean.tk

Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia  Design


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Umlaute in revmail - OSX, mail.app

2007-05-18 Thread R . Hillen

Hello list,


1) if p = schoen, the following statement will work:

revmail [EMAIL PROTECTED],,p,textbody

will work;

if p = schön (german umlaut for oe), no new mail appears.


2) if p = test and ttext = hello, dear friends,

revmail [EMAIL PROTECTED],,p,ttext  works,

if ttext = hällo, liebe Freunde!, there appears a new Window  
without textbody.



May you help?

(OS X 10.4.9, apple mail.app, Rev 2.8.1, also 2.7.4)

Thank you!
Richard.___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Umlaute in revmail - OSX, mail.app

2007-05-18 Thread Éric Miclo

Hello,

That's bug # 3410 opened on 006-03-21 with a normal severity...

Perhaps will it be fixed it in the next version...

Regards,

ÉrIC


Le 18 mai 07 à 12:09, R.Hillen a écrit :


Hello list,


1) if p = schoen, the following statement will work:

revmail [EMAIL PROTECTED],,p,textbody

will work;

if p = schön (german umlaut for oe), no new mail appears.


2) if p = test and ttext = hello, dear friends,

revmail [EMAIL PROTECTED],,p,ttext  works,

if ttext = hällo, liebe Freunde!, there appears a new Window  
without textbody.



May you help?

(OS X 10.4.9, apple mail.app, Rev 2.8.1, also 2.7.4)

Thank you!
Richard.___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution




-- My NeXT computer will Be a Mac too! --


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Odd behaviour from revMail, why?

2007-04-14 Thread Peter Alcibiades
Sounds like it would be best to roll your own by sending a command to the 
shell.  If you can control the platform its running on, this will be reliable 
and do exactly what you specify?

Peter
___
use-revolution mailing list
[EMAIL PROTECTED]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


revMail bug report

2007-04-14 Thread Peter Alcibiades
I reported this as a bug, #4693.  But if anyone wants to do emailing in anger 
on Linux, the right thing is probably to use the shell mail command, which is 
documented at

http://www.onlamp.com/linux/cmd/cmd.csp?path=m/mail.

Its easy to see why mailto will not work very reliably if you have a couple 
different clients installed.  Just start up a terminal and invoke them 
with --help.  You see that the list of options is wildly different from one 
client to another.  I experimented with kmail and sylpheed, which was enough 
to convince.

Which is why revMail should not use an email client at all, let alone mailto, 
and there is no need when you have the shell available.  Or maybe just 
eliminate revMail from the Linux version, and tell people to pass a command 
to the shell and use mail.

Looking forward to a couple of hours struggling with options to get this one 
to work

Peter
___
use-revolution mailing list
[EMAIL PROTECTED]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Odd behaviour from revMail, why?

2007-04-13 Thread Peter Alcibiades
I got the attached from the dictionary, cut and pasted it, and only changed it 
to make Field1 a real reference to a real field on the test card.  When I use 
it, the first thing that happens is Firefox opens.  Then Kmail opens.  It 
shows [EMAIL PROTECTED] as the address, but nothing else is put into either 
subject or body.

I was expecting to see Help! appear in the subject, and the contents of Field1 
to appear in the body, and for only Kmail to open.  Isn't this what is 
supposed to happen?  Putting in a literal string in place of field has no 
effect either.

Does revMail do this on Mac or XP?

__
on mouseUp
  revMail [EMAIL PROTECTED],,Help!,field Field1
end mouseUp
___
use-revolution mailing list
[EMAIL PROTECTED]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Odd behaviour from revMail, why?

2007-04-13 Thread J. Landman Gay

Peter Alcibiades wrote:
I got the attached from the dictionary, cut and pasted it, and only changed it 
to make Field1 a real reference to a real field on the test card.  When I use 
it, the first thing that happens is Firefox opens.  Then Kmail opens.  It 
shows [EMAIL PROTECTED] as the address, but nothing else is put into either 
subject or body.


I was expecting to see Help! appear in the subject, and the contents of Field1 
to appear in the body, and for only Kmail to open.  Isn't this what is 
supposed to happen?  Putting in a literal string in place of field has no 
effect either.


Does revMail do this on Mac or XP?


It's different on every platform and email client; I get different 
results depending on what app opens and what OS I'm running. But I think 
you should enter the above into a bug report, mainly because I don't 
think the revMail handler is written correctly for Linux. Now would be a 
good time to report it, since the team is working on the next Linux 
release right now.


The revMail command doesn't really mail anything itself; instead it sets 
up url-encoded text for the address, body, and other components of an 
email. Then it passes the data to the revGoURL command.


The revGoURL command does the actual handling of the email. On Macs, it 
sends an applescript and the Mac OS decides which app to launch (which 
it does correctly.) Mail gets opened in the user's default email client 
and URLs go to a browser. On Windows the handler figures out whether its 
an email or a web link and uses launch to open the right app, which it 
determines by reading the registry. However, on Linux there is very 
little handling done at all. RevGoURL just sends the URL to a browser, 
which then handles the email request itself by opening your mail client. 
That's why you see the browser appear first. I suspect the browser is 
ignoring the extra parameters and is only sending the first one -- the 
email address.


The revGoURL command needs to be rewritten to specifically accomodate 
email requests on Linux. That's the part to report as a bug.


--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
[EMAIL PROTECTED]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Odd behaviour from revMail, why?

2007-04-13 Thread Ken Ray
On Fri, 13 Apr 2007 12:54:00 -0500, J. Landman Gay wrote:

 It's different on every platform and email client; I get different 
 results depending on what app opens and what OS I'm running. But I 
 think you should enter the above into a bug report, mainly because I 
 don't think the revMail handler is written correctly for Linux. Now 
 would be a good time to report it, since the team is working on the 
 next Linux release right now.

Actually, I tested it under Kubuntu and Ubuntu and got differing 
results - on Ubuntu, it launched Firefox and opened up the email 
client, perfectly addresses. On Kubuntu it did absolutely nothing. So 
I'm not so sure it's Linux-specific - I think the 'mailto:' is being 
formatted correctly, but I can tell you from experience that different 
mail clients are more finicky than others. Some need to have things 
quoted, some don't, etc.

Although it's probably a good idea to post your findings to bugzilla 
anyway just so that the team can see your results.


Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/
___
use-revolution mailing list
[EMAIL PROTECTED]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


revMail attachments question

2007-03-29 Thread Peter Alcibiades
Is it possible to use the revMail command so as to send not just an email, but 
the email with an attached file?

My app is doing backups of the data file on the local machine, but it would be 
really neat to be able to send a backup automatically by email to an offsite 
machine.  Save a lot of tooing and froing with usb sticks.

Peter
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Revmail

2007-02-18 Thread cathy1
I am in the process of writing a Parent Conference program for my school - 
Greens Farms Academy in Westport CT USA.  I am sending one e-mail at a time to 
a parent with the parent's conference info from my program using Revmail in a 
button script.  I have no problem with it on a Mac; however, when using 
FirstClass on my PC the e-mail message does NOT get called.  The FirstClass 
program appears on the screen, but the particular e-mail is NOT generated.  
Any thoughts on what could be wrong?

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Revmail

2007-02-18 Thread Stephen Barncard
It's not clear how the incredibly ancient First Class has anything to 
do with Revolution in your situation. Are you saying the emails you 
created in Rev don't show up in the First Class mailer?


I am in the process of writing a Parent Conference program for my 
school - Greens Farms Academy in Westport CT USA.  I am sending one 
e-mail at a time to a parent with the parent's conference info from 
my program using Revmail in a button script.  I have no problem with 
it on a Mac; however, when using FirstClass on my PC the e-mail 
message does NOT get called.  The FirstClass program appears on the 
screen, but the particular e-mail is NOT generated.  Any thoughts 
on what could be wrong?




--


stephen barncard
s a n  f r a n c i s c o
- - -  - - - - - - - - -



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Revmail

2007-02-18 Thread Luis

Hiya,

Is it set as the default email client on the PC? An easy way to see  
is in IE: Tools/Internet Options/Programs  and see if it's in the  
default email program list. Can't be sure if it's in the same place  
in IE7 tho'.


Cheers,

Luis.


On 19 Feb 2007, at 0:41, [EMAIL PROTECTED] wrote:

I am in the process of writing a Parent Conference program for my  
school - Greens Farms Academy in Westport CT USA.  I am sending one  
e-mail at a time to a parent with the parent's conference info from  
my program using Revmail in a button script.  I have no problem  
with it on a Mac; however, when using FirstClass on my PC the e- 
mail message does NOT get called.  The FirstClass program appears  
on the screen, but the particular e-mail is NOT generated.  Any  
thoughts on what could be wrong?


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Revmail

2007-02-18 Thread Sarah Reichelt

On 2/19/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

I am in the process of writing a Parent Conference program for my school - Greens Farms Academy in 
Westport CT USA.  I am sending one e-mail at a time to a parent with the parent's conference info 
from my program using Revmail in a button script.  I have no problem with it on a Mac; however, 
when using FirstClass on my PC the e-mail message does NOT get called.  The FirstClass 
program appears on the screen, but the particular e-mail is NOT generated.  Any 
thoughts on what could be wrong?


I think I had problems with revMail on a PC if the body of the text
contained quotes, tabs, linefeeds or any unusual characters. It was a
while ago so I'm not sure, but I think I ended up removing any quotes
from the email text (you can replace them with single quotes) and
enclosing the text with quotes before sending it to revMail.

HTH,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Revmail

2007-02-18 Thread Jim Ault

On 2/18/07 4:41 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 I am in the process of writing a Parent Conference program for my school -
 Greens Farms Academy in Westport CT USA.  I am sending one e-mail at a time to
 a parent with the parent's conference info from my program using Revmail in a
 button script.  I have no problem with it on a Mac; however, when using
 FirstClass on my PC the e-mail message does NOT get called.  The FirstClass
 program appears on the screen, but the particular e-mail is NOT generated.
 Any thoughts on what could be wrong?
 
My distant memory: FirstClass is not really an email program, but a bulletin
board system.  Messages are distributed to the forums/discussion list.
Emails to the internet are not sent from the user machine, but from the BBS
server.  Your system could be wy ahead of what I used to use, so pardon
the lack of current knowledge.

It could be that the program you are running on the PC is the FirstClass
Client and it does not respond to Windows the same way as other email
programs and cannot be set as the default email client on the PC.

Do you have FirstClass as the default email client?  Anyone else get this to
work on their system?

Jim Ault
Las Vegas


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


how large in size can be the bodytext in revmail

2006-12-08 Thread runrev260805
Hi,

i´ve problems parsing the bodytext parameter to the revMail command. Either the 
text is not completely given to the email program or i get a .dll error.

My system: Windows XPSP2 German, RevStudio 2.7.4.

Does anyone know, how large the bodytext  can be?

Best regards,

Matthias Rebbe


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RevMail Command - Sending an Email

2006-03-24 Thread David Burgun

Hi,

I would like to be able to send an email using RunRev, I looked at  
the revMail command which does 99% of the job, however I would like  
to actually send the message, not just have it created. Is there any  
way to do this? It must work on MacOS X and Windows XP.


Thanks a lot
All the Best
Dave

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail Command - Sending an Email

2006-03-24 Thread Sean Shao
This questions gets asked a lot David that I really wish that Rev would just 
put it into the IDE/engine instead of the current method that they use (or 
have both, choices are always good).


Take a look at one of the following Rev libraries that should be completely 
cross-platform:


- libSmtp 2.5.3 by me  www.shaosean.tk  in the libraries section
- SMTPlibrary by Sarah Troz  http://www.troz.net/Rev/libraries.html 

Chipp has also made a wrapper library for my library that makes it a bit 
easier to use, but limits the functionality..


-Sean

_
Don’t just search. Find. Check out the new MSN Search! 
http://search.msn.click-url.com/go/onm00200636ave/direct/01/


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail Command - Sending an Email

2006-03-24 Thread Chipp Walters



Sean Shao wrote:
This questions gets asked a lot David that I really wish that Rev would 
just put it into the IDE/engine instead of the current method that they 
use (or have both, choices are always good).


Take a look at one of the following Rev libraries that should be 
completely cross-platform:


- libSmtp 2.5.3 by me  www.shaosean.tk  in the libraries section
- SMTPlibrary by Sarah Troz  http://www.troz.net/Rev/libraries.html 

Chipp has also made a wrapper library for my library that makes it a bit 
easier to use, but limits the functionality..


It's called altEmailHarness and as Sean mentions, it uses her great 
library. It only allows the sending of plain text messages with no 
enclosures. If you need more than that, you should download from the 
shaosean site above.


Bottom of page:
http://www.altuit.com/webs/altuit2/RunRev/Downloads.htm

-Chipp

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail, OSX 10.4.4 and Umlaute

2006-01-17 Thread Dave Cragg


On 17 Jan 2006, at 07:21, Dave Cragg wrote:



 put uniDecode(uniEncode(Hier Ausfüllen),utf8) into tSubject
 revmail [EMAIL PROTECTED], tSubject,Text of Mail



Sorry, I repeated the original syntax error. It needs an extra comma.


  put uniDecode(uniEncode(Hier Ausfüllen),utf8) into tSubject
  revmail [EMAIL PROTECTED],,tSubject,Text of Mail

Cheers
Dave___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail, OSX 10.4.4 and Umlaute

2006-01-17 Thread Thierry Arbellot

Bugzilla 2259, reported in October 2004, status is still pending.

Thierry

On 2006, Jan 16, , at 22:58, R. Hillen wrote:


Hello,

On OSX 10.4.4 I´m using revMail to send some Data using the 
Mac-Mail-Programm..


After upgrading to 10.4.4. this doesn´t work. I found the cause was a  
german Umlaut in the text of the subject.


revmail [EMAIL PROTECTED],Hier Ausfüllen,Text of Mail

doesn´t work, but

revmail [EMAIL PROTECTED],Hier Ausfuellen,Text of Mail

will be ok.

Any hints, what to do?

Richard.___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail, OSX 10.4.4 and Umlaute

2006-01-17 Thread R. Hillen


Hello Sarah, Dave and Thiery,

Am 17.01.2006 um 17:11 schrieb [EMAIL PROTECTED]:



Message: 10
Date: Mon, 16 Jan 2006 22:58:33 +0100
From: R. Hillen [EMAIL PROTECTED]
Subject: revMail, OSX 10.4.4 and Umlaute
To: use-revolution@lists.runrev.com
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed




Thank you all for yout quick and helpfull answers.
Richard.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


revMail, OSX 10.4.4 and Umlaute

2006-01-16 Thread R. Hillen

Hello,

On OSX 10.4.4 I´m using revMail to send some Data using the Mac-Mail- 
Programm..


After upgrading to 10.4.4. this doesn´t work. I found the cause was  
a  german Umlaut in the text of the subject.


revmail [EMAIL PROTECTED],Hier Ausfüllen,Text of Mail

doesn´t work, but

revmail [EMAIL PROTECTED],Hier Ausfuellen,Text of Mail

will be ok.

Any hints, what to do?

Richard.___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail, OSX 10.4.4 and Umlaute

2006-01-16 Thread Sarah Reichelt
 On OSX 10.4.4 I´m using revMail to send some Data using the Mac-Mail-
 Programm..

 After upgrading to 10.4.4. this doesn´t work. I found the cause was
 a  german Umlaut in the text of the subject.

 revmail [EMAIL PROTECTED],Hier Ausfüllen,Text of Mail

 doesn´t work, but

 revmail [EMAIL PROTECTED],Hier Ausfuellen,Text of Mail

 will be ok.

The same thing happens on Mac OS X 10.4.3 here, although you need an
extra comma between the To address  the subject, unless you want to
specify a CC recipient.

I had a look at the script in the revCommon library and it contains
the following lines:
put urlEncode(pSubject) into pSubject
put urlEncode(pBody) into pBody
replace + with %20 in pSubject
replace + with %20 in pBody

I would have thought they would make it work, even with umlauts, but
in fact, when I commented them out, it all worked fine. This may be
only with later Mac systems and it may be only with Apple mail rather
than any other email client, so I would be reluctant to make the
change for an app you mean to distribute, but for your own purposes,
it should work fine.

Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail, OSX 10.4.4 and Umlaute

2006-01-16 Thread Dave Cragg


On 17 Jan 2006, at 06:53, Sarah Reichelt wrote:



revmail [EMAIL PROTECTED],Hier Ausfüllen,Text of Mail

doesn´t work, but



I had a look at the script in the revCommon library and it contains
the following lines:
put urlEncode(pSubject) into pSubject
put urlEncode(pBody) into pBody
replace + with %20 in pSubject
replace + with %20 in pBody

I would have thought they would make it work, even with umlauts, but
in fact, when I commented them out, it all worked fine.


Using utf8 for the subject and message text also seems to work.

 put uniDecode(uniEncode(Hier Ausfüllen),utf8) into tSubject
 revmail [EMAIL PROTECTED], tSubject,Text of Mail

As with Sarah's solution, I don't know what will happen with other  
mail clients. But at least you can avoid editing the rev library.


Cheers
Dave___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Revmail thunderbird --no address?

2005-05-22 Thread Ken Ray
On 5/22/05 6:37 PM, Thomas McCarthy [EMAIL PROTECTED] wrote:

 
 I found a small bug.
 Using revmail on my PC (win98-jap) which has Thunderbird (ver 1?) installed:
 Thunderbird starts up properly.
 The message and subject are there, but the sendto address field is empty.
 
 The this command works on my mac (Mail) and other pcs (outlook).

It could be the way the mailto:; shell command (which I believe revMail
uses) is constructed... many email programs are quite picky; wouldn't
surprise me if Thunderbird is picky as well.

Ken Ray
Sons of Thunder Software
Web site: http://www.sonsothunder.com/
Email: [EMAIL PROTECTED]

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revmail and Tiger?

2005-05-12 Thread Klaus Major
Hi Sarah,
i have some trouble using revmail on Tiger...
But maybe this is no special Tiger problem...?
revmail [EMAIL PROTECTED], , hallo,text
works as exspected.
But:
 put line 1 of fld 2 into adresse
## a VALID e-mail address!
 put fld body into bo
 revmail adresse, , Subject,bo
does NOT, it only activates Mail, but does not create a new mail...
Same if i use the direct references: revmail line 1 of fld 2, ,  
Subject, fld body


Hi Klaus,
Does fld Body contain any quotes?
Ah, yes it does...
That might confuse things. You could try replacing any quotes with  
a single quote and then perhaps surrounding the text with quotes  
and seeing if that helps.
e.g.

put fld body into tBody
replace quote with ' in tBody
put quote  tBody  quote into tBody
revmail adresse, , Subject, tBody
I'll give that t try and hope that my many umlauts will work then...
Thanks for the hint!
HTH,
Sarah
Best
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


revmail and Tiger?

2005-05-11 Thread Klaus Major
Hi friends,
i have some trouble using revmail on Tiger...
But maybe this is no special Tiger problem...?
revmail [EMAIL PROTECTED], , hallo,text
works as exspected.
But:
 put line 1 of fld 2 into adresse
## a VALID e-mail address!
 put fld body into bo
 revmail adresse, , Subject,bo
does NOT, it only activates Mail, but does not create a new mail...
Same if i use the direct references: revmail line 1 of fld 2, ,  
Subject, fld body

But this one does work:
revmail line 1 of fld 2
Any hints are welcome :-)
Regards
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revmail and Tiger?

2005-05-11 Thread Thierry Arbellot
Hi Klaus,
What is the text in fld body ?
If there is a special character (for example with an umlaut), revMail 
will not work (bugzilla 2259)
Notice that you can modify the revMail handler to fix this problem.

Hope it helps.
Regards
Thierry
On 2005, May 11, , at 13:32, Klaus Major wrote:
Hi friends,
i have some trouble using revmail on Tiger...
But maybe this is no special Tiger problem...?
revmail [EMAIL PROTECTED], , hallo,text
works as exspected.
But:
 put line 1 of fld 2 into adresse
## a VALID e-mail address!
 put fld body into bo
 revmail adresse, , Subject,bo
does NOT, it only activates Mail, but does not create a new mail...
Same if i use the direct references: revmail line 1 of fld 2, , 
Subject, fld body

But this one does work:
revmail line 1 of fld 2
Any hints are welcome :-)
Regards
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revmail and Tiger?

2005-05-11 Thread Klaus Major
Bonjour Thierry,
Hi Klaus,
What is the text in fld body ?
If there is a special character (for example with an umlaut),
Of course there are LOTS of umlauts, its german, you know ;-)
revMail will not work (bugzilla 2259)
Oh, no, not again... :-/
Notice that you can modify the revMail handler to fix this problem.
I know, thanks, will try your suggestion from Godzilla :-)
Hope it helps.
Regards
Thierry
Regards et merci bien
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revmail and Tiger?

2005-05-11 Thread Klaus Major
Bonjour Thierry,
...
Notice that you can modify the revMail handler to fix this problem.
I know, thanks, will try your suggestion from Godzilla :-)
damn, commenting out these 4 lines end up in a Compiler error... :-/
Hope it helps.
Regards
Thierry
Regards
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revmail and Tiger?

2005-05-11 Thread Thierry Arbellot
On 2005, May 11, , at 15:48, Klaus Major wrote:
Bonjour Thierry,
Guten Tag Klaus,

...
Notice that you can modify the revMail handler to fix this problem.
I know, thanks, will try your suggestion from Godzilla :-)
damn, commenting out these 4 lines end up in a Compiler error... :-/
I didn't have any problem with Rev 2.5 and 2.5.1, OS X 10.2 and 10.3
Can I help ?
Thierry
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revmail and Tiger?

2005-05-11 Thread Klaus Major
Bonjour Thierry,
On 2005, May 11, , at 15:48, Klaus Major wrote:
Bonjour Thierry,
Guten Tag Klaus,
:-)
Notice that you can modify the revMail handler to fix this problem.
I know, thanks, will try your suggestion from Godzilla :-)
damn, commenting out these 4 lines end up in a Compiler  
error... :-/
I didn't have any problem with Rev 2.5 and 2.5.1, OS X 10.2 and 10.3
Can I help ?
Well, maybe this is a Tiger issue?
Even my subject does contains umlauts and as i told you,
commenting out the 4 lines that you mentioned in your bugziall entry
give me an (AppleScript) compiler error...?
Any ideas?
Thierry
Au revoir mon ami...
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revmail and Tiger?

2005-05-11 Thread Thierry Arbellot
On 2005, May 11, , at 16:14, Klaus Major wrote:
Bonjour Thierry,
On 2005, May 11, , at 15:48, Klaus Major wrote:
Bonjour Thierry,
Guten Tag Klaus,
:-)
Notice that you can modify the revMail handler to fix this problem.
I know, thanks, will try your suggestion from Godzilla :-)
damn, commenting out these 4 lines end up in a Compiler error... 
:-/
I didn't have any problem with Rev 2.5 and 2.5.1, OS X 10.2 and 10.3
Can I help ?
Well, maybe this is a Tiger issue?
Even my subject does contains umlauts and as i told you,
commenting out the 4 lines that you mentioned in your bugziall entry
give me an (AppleScript) compiler error...?
Any ideas?
AppleScript error ???
I should also test with Tiger, but I will not have it before 2 or 3 
months... :-(

Au revoir mon ami...
Auf Wiedersehen, mein Freund ;-)
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
Thierry
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revmail and Tiger?

2005-05-11 Thread Klaus Major
Bonjour Thierry,
...
Well, maybe this is a Tiger issue?
Even my subject does contains umlauts and as i told you,
commenting out the 4 lines that you mentioned in your bugziall entry
give me an (AppleScript) compiler error...?
Any ideas?
AppleScript error ???
Yes, unfortunately...
I should also test with Tiger, but I will not have it before 2 or 3  
months... :-(
There will be at least an update to 10.4.1 or 10.4.2 then, so you  
will be lucky ;-)

Au revoir mon ami...
Auf Wiedersehen, mein Freund ;-)
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
Thierry
Best
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revmail and Tiger?

2005-05-11 Thread Sarah Reichelt
i have some trouble using revmail on Tiger...
But maybe this is no special Tiger problem...?
revmail [EMAIL PROTECTED], , hallo,text
works as exspected.
But:
 put line 1 of fld 2 into adresse
## a VALID e-mail address!
 put fld body into bo
 revmail adresse, , Subject,bo
does NOT, it only activates Mail, but does not create a new mail...
Same if i use the direct references: revmail line 1 of fld 2, , 
Subject, fld body

Hi Klaus,
Does fld Body contain any quotes? That might confuse things. You 
could try replacing any quotes with a single quote and then perhaps 
surrounding the text with quotes and seeing if that helps.
e.g.

put fld body into tBody
replace quote with ' in tBody
put quote  tBody  quote into tBody
revmail adresse, , Subject, tBody
HTH,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


revMail command missfires

2005-05-08 Thread betypaul
Hi Helpers
I am using the command revMail with  my Mac Mail   ( OS 10.4)
and instead of Mail opening with the address, subject, and body as
it should,  Safari opens with all the stuff  in the address line.
Under revMail in our dictionary it states
 On Mac OS systems, the mail message is opened in the application
the user has set for the mailto:; protocol in the Internet control
panel.
this I cannot find
I think AppleScript is enabled.
could it be another case of our incompatibility with AppleScript in
Tiger?
anyone had this one and solved it?
Paul
Hello,
I use Tiger as well and just looked at what you pointed out, but
everything seems to work as it should.
Have you set your e-mail app to be Mail. You'll find the setting is
Mail's preferences. There isn't anything to be set in Internet
control panel (since Mac OS X some of those settings have been moved
into the apps themselves, and I don't think it's a good idea).
Best reagrds,
ÉrIC
Le 7 mai 05 à 21:21, betypaul a écrit :

Hi again
email was set to Mail -  and I also tried it with Thunderbird and  
tried switching Firefox for Safari - no luck.
I tried the command on my old computer ( OS10.1 , Mail 1.1, Rev 2.0)  
and it worked fine.

Maybe more detailed information would help
on the command
revMail use-revolution@lists.runrev.com, , TRYING , SUCCESS
Safari opens with
http://mailto:use-revolution@lists.runrev.com/? 
Subject=TRYINGBody=SUCCESS
in the address box
and proceeds to open the home page of runrev.com

Is there a clue in there for someone with more experience in  
AppleScript than I?

Paul




___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail command missfires

2005-05-08 Thread Klaus Major
Hi Paul,
Hi again
email was set to Mail -  and I also tried it with Thunderbird and  
tried switching Firefox for Safari - no luck.
I tried the command on my old computer ( OS10.1 , Mail 1.1, Rev  
2.0) and it worked fine.

Maybe more detailed information would help
on the command
revMail use-revolution@lists.runrev.com, , TRYING , SUCCESS
works fine here, mail opens on OS X 10.4...
Safari opens with
http://mailto:use-revolution@lists.runrev.com/? 
Subject=TRYINGBody=SUCCESS
in the address box
and proceeds to open the home page of runrev.com

Is there a clue in there for someone with more experience in  
AppleScript than I?
What version are you using?
I remember there was a bug in the revamil ocmmand in an older  
version, which can
easily be cured by choosing Check for updates in the Help menu...

Hope that helps...
Paul
Best
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


revMail command missfires

2005-05-07 Thread betypaul
Hi Helpers
I am using the command revMail with  my Mac Mail   ( OS 10.4)  
and instead of Mail opening with the address, subject, and body as it  
should,  Safari opens with all the stuff  in the address line.

Under revMail in our dictionary it states
 On Mac OS systems, the mail message is opened in the application  
the user has set for the mailto:; protocol in the Internet control  
panel.
this I cannot find

I think AppleScript is enabled.
could it be another case of our incompatibility with AppleScript in  
Tiger?

anyone had this one and solved it?
Paul
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail command missfires

2005-05-07 Thread Éric Miclo
Hello,
I use Tiger as well and just looked at what you pointed out, but  
everything seems to work as it should.

Have you set your e-mail app to be Mail. You'll find the setting is  
Mail's preferences. There isn't anything to be set in Internet  
control panel (since Mac OS X some of those settings have been moved  
into the apps themselves, and I don't think it's a good idea).

Best reagrds,
ÉrIC
Le 7 mai 05 à 21:21, betypaul a écrit :
Hi Helpers
I am using the command revMail with  my Mac Mail   ( OS 10.4)  
and instead of Mail opening with the address, subject, and body as  
it should,  Safari opens with all the stuff  in the address line.

Under revMail in our dictionary it states
 On Mac OS systems, the mail message is opened in the application  
the user has set for the mailto:; protocol in the Internet control  
panel.
this I cannot find

I think AppleScript is enabled.
could it be another case of our incompatibility with AppleScript in  
Tiger?

anyone had this one and solved it?
Paul
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail Problem

2005-02-14 Thread Roger Kingston

Thanks Dwayne,
I tried your suggestion, but my version of RR was already up to date.  

The problem does seem to be related to a missing library in the
stand-alone.  Revmail doesn't work from the standalone until I start the
RR development environment.  Whereupon, the mail in the standalone
script behaves impeccably, even if I exit the RR development app.  A
reboot of my PC then restores the standalone to its non-mailing state.

Regards
Roger Kingston


Hi Roger,
Problem lies in the original revlibrary.rev file (components/global
environment/)
The problem has been fixed, you can download an update by running Rev
2.5 then choose Help  Check for Updates... You will probably be
prompted to update the revstandalonesettings.rev file
(components/tools/) also.
This is done automatically and a backup copy of each is made!

Cheers Dwayne...


 From: Roger Kingston [EMAIL PROTECTED]
 Subject: RevMail Problem

 I'm running RR 2.5 under MS Windows XP SP2 and have stumbled across a

 problem with revMail in a standalone.  The mail script I have is in a

 button on a card in a substack and it works fine in the Development 
 environment and MS Outlook - starting the mail program if it's not 
 running, but just does nothing in the standalone. (No error message).

 Code is:
 revMail lvMailTo,lvRecipientList,lvSubject,lvBody

 The Standalone Application Settings are set to 'search' for required 
 inclusions.

 Can anyone help please?


 Roger Kingston




___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


RevMail Problem

2005-02-13 Thread Roger Kingston
I'm running RR 2.5 under MS Windows XP SP2 and have stumbled across a
problem with revMail in a standalone.  The mail script I have is in a
button on a card in a substack and it works fine in the Development
environment and MS Outlook - starting the mail program if it's not
running, but just does nothing in the standalone. (No error message).
 
Code is:
revMail lvMailTo,lvRecipientList,lvSubject,lvBody

The Standalone Application Settings are set to 'search' for required
inclusions.
 
Can anyone help please?
 
 
Roger Kingston
 
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMail Problem

2005-02-13 Thread Dwayne Rothe
Hi Roger,
Problem lies in the original revlibrary.rev file (components/global
environment/)
The problem has been fixed, you can download an update by running Rev 2.5
then choose Help  Check for Updates...
You will probably be prompted to update the revstandalonesettings.rev file
(components/tools/) also.
This is done automatically and a backup copy of each is made!

Cheers Dwayne...


 From: Roger Kingston [EMAIL PROTECTED]
 Subject: RevMail Problem

 I'm running RR 2.5 under MS Windows XP SP2 and have stumbled across a
 problem with revMail in a standalone.  The mail script I have is in a
 button on a card in a substack and it works fine in the Development
 environment and MS Outlook - starting the mail program if it's not
 running, but just does nothing in the standalone. (No error message).

 Code is:
 revMail lvMailTo,lvRecipientList,lvSubject,lvBody

 The Standalone Application Settings are set to 'search' for required
 inclusions.

 Can anyone help please?


 Roger Kingston



___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail fails on some Macs

2005-01-19 Thread J. Landman Gay
On 1/18/05 10:38 PM, Sivakatirswami wrote:
What exactly does the Mac need to ensure that there is an email client 
automatically will be invoked by revMail? I can't find any preference in 
OS X for default mail app that requires setting. No more internet 
config and apple has this bizarre requirment to set the default browser 
from within Safari, 
In Panther, they've done the same idiotic thing for email -- you have to 
set the default email reader from within Apple's Mail app.

Jaguar was better, these settings were in the System prefs.
--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


  1   2   >