Page 1 of 1

How to pass the email address to the preview

PostPosted: Wed Apr 26, 2017 5:01 pm
by mauri.menabue
hi all
Is there a system to pass the email address and other parameters to the button for sending mail on preview?

Tia
Maurizio Menabue

Re: How to pass the email address to the preview

PostPosted: Thu Apr 27, 2017 3:20 am
by nageswaragunupudi
mauri.menabue wrote:hi all
Is there a system to pass the email address and other parameters to the button for sending mail on preview?

Tia
Maurizio Menabue


No.

Instead you can have your own function to send emails and then assign it as
TPreview():bEmail := { |oPreview, cFile| myemailfunc( oPreview, cFile ) }

Now clicking on the mail button calls your function. Inside your function "myemailfunc", you can configure the mail parameters as you like.

Re: How to pass the email address to the preview

PostPosted: Thu Apr 27, 2017 4:52 pm
by mauri.menabue
thank you

Mr. G. N. Rao.