|
| Iniciado por guest, 10,jun. 2015 12:38 - 4 respuestas |
| |
| | | |
|
| |
| Publicado el 10,junio 2015 - 12:38 |
Hi
I know i can use the iParameterExport function to add an email recipient/email subject
but is there a way to add text to the body of the email (without using 'new object OLE "Outlook.Application"')
thanks
iso |
| |
| |
| | | |
|
| | |
| |
| Publicado el 10,junio 2015 - 14:31 |
Hi iso,
What do you mean? (I ask because I assume you saw the straith-forward example in the help which does exactly that: http://doc.windev.com/en-US/…. When the user click on export to email, all fields are pre-defined.)
It is not possible to directly fill the body of the email. What we do is that our application is automatically generating a PDF then we build an email ready to be sent, using the email variable. We do not have code specifically for Outlook. (We do the job manually.)
Best regards, Alexandre Leclerc |
| |
| |
| | | |
|
| | |
| |
| Publicado el 10,junio 2015 - 17:34 |
Hi Alexandre,
im using the following:
iParameterExport(iExportEmailRecipient, "Wam@CrazyMail.com; Celia.Wat@ZMail.fr") iParameterExport(iExportEmailSender, "Itsme@Berrymail.com") iParameterExport(iExportEmailSubject, "Result of yearly sales")
but was looking for something which i guess would look like this:
iParameterExport(iExportEmailBody, "Dear ....")
I also have done it the same way you said, but in this case the user wants to open the report in the print view before sending the email.
thanks
iso |
| |
| |
| | | |
|
| | |
| |
| Publicado el 10,junio 2015 - 17:44 |
Hi iso,
In such a case we had done this in the past: we added a new button in the Print preview to actually create manually the email, content, etc. and add a copy in the CRM of our application. It worked well, but was a challenge to implement (before the existence of the procedure variable for the call-back to the main application for the CRM part).
Now we removed that. We simply tell the user to click on the good button, because any-way, they can very easily click the attachment to see if the PDF is correct (and cancel if not).
Best regards, Alexandre Leclerc |
| |
| |
| | | |
|
| | |
| |
| Publicado el 10,junio 2015 - 19:34 |
Hi Alexandre,
thanks, will consider adding a button to the preview, forgot you could do that.
iso |
| |
| |
| | | |
|
| | | | |
| | |
|