" /> GVP - Want to send a FAX when pressing an option - Genesys CTI User Forum

Author Topic: GVP - Want to send a FAX when pressing an option  (Read 8774 times)

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
GVP - Want to send a FAX when pressing an option
« on: June 14, 2007, 08:46:13 PM »
Advertisement
Hi guys,

Does anybody has a solution for this scenario:

1. Customer calls
2. GVP answers
3. GVP does a DB consult of some sort (balance, product shipment, consult, etc)
4. Customer press an option to send this info to a fax
5. GVP asks for the Fax number
6. GVP sends the fax

6 is my problem, i guess that has to be a Fax server that can read XML code generated by GVP. Does anybody has a solution or has done something like this?

Thanks

Offline René

  • Administrator
  • Hero Member
  • *****
  • Posts: 1832
  • Karma: 62
Re: GVP - Want to send a FAX when pressing an option
« Reply #1 on: June 14, 2007, 09:58:51 PM »
Hi cavagnaro,

I don't have experience with such scenario but I would use standard email instead of XML code. As I have the experience fax servers do support conversion of emails to faxes usually. So GVP has to generate a new email in step 6 and send it to fax server. There the email will be converted to fax and send out.

What do you think about that?

R.

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: GVP - Want to send a FAX when pressing an option
« Reply #2 on: June 14, 2007, 10:26:43 PM »
Generate an email?
How? the application will execute smtp commands? You mean that? Or use CDO or similar?
It sounds more easily but still thinking how GVP can do that

Offline René

  • Administrator
  • Hero Member
  • *****
  • Posts: 1832
  • Karma: 62
Re: GVP - Want to send a FAX when pressing an option
« Reply #3 on: June 15, 2007, 05:54:01 AM »
I assume you're generating VoiceXML pages dynamically using ASP, JSP or something else. In that case you can develop a dynamic page that processes collected data (fax number), generates an email using some component suitable for your environment e.g. CDO for ASP, JavaMail for JSP etc. and returns VXML code to GVP - typically confirmation to the caller that the fax was sent.

R.

Offline sitto

  • Newbie
  • *
  • Posts: 44
  • Karma: 0
Re: GVP - Want to send a FAX when pressing an option
« Reply #4 on: February 05, 2010, 05:54:48 PM »
It's seem as same my problem. Customer would like to send fax in the same call but I don't know how to send data from GVP to fax and then send an appropriate document to customer.

Can we send via email and fax can be sent in the same call?

Offline YevgeniyP

  • Jr. Member
  • **
  • Posts: 70
  • Karma: 0
Re: GVP - Want to send a FAX when pressing an option
« Reply #5 on: February 05, 2010, 06:02:51 PM »
If customer has MCR email solution email may be generated using one of IRD object, even from the voice strategy.

YP

Offline sitto

  • Newbie
  • *
  • Posts: 44
  • Karma: 0
Re: GVP - Want to send a FAX when pressing an option
« Reply #6 on: February 05, 2010, 06:10:20 PM »
I don't understand. Could you please explain more detail?


Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: GVP - Want to send a FAX when pressing an option
« Reply #7 on: February 05, 2010, 11:04:49 PM »
[quote author=sitto link=topic=2312.msg22760#msg22760 date=1265392488]
It's seem as same my problem. Customer would like to send fax in the same call but I don't know how to send data from GVP to fax and then send an appropriate document to customer.

Can we send via email and fax can be sent in the same call?

[/quote]

We will use a faxserver, send the fax as an email and the faxserver will send the email as fax.

Offline smile

  • Sr. Member
  • ****
  • Posts: 286
  • Karma: 6
Re: GVP - Want to send a FAX when pressing an option
« Reply #8 on: February 06, 2010, 09:55:28 AM »
[quote author=cavagnaro link=topic=2312.msg22764#msg22764 date=1265411089]

We will use a faxserver, send the fax as an email and the faxserver will send the email as fax.
[/quote]

cavagnaro, could you tell which faxserver you will plan to use?

Offline YevgeniyP

  • Jr. Member
  • **
  • Posts: 70
  • Karma: 0
Re: GVP - Want to send a FAX when pressing an option
« Reply #9 on: February 06, 2010, 06:44:02 PM »
To send email from the voice strategy you need to have:
- MCR (eServices) installed, email part.
- use IRD object Autoresponse or NewEmail in the strategy. You need to know email address, phone number and use particular standard response. I assume fax server will require specially formatted email with phone number in the subject for example.

YP

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: GVP - Want to send a FAX when pressing an option
« Reply #10 on: February 07, 2010, 12:42:09 PM »
[quote author=smile link=topic=2312.msg22765#msg22765 date=1265450128]
[quote author=cavagnaro link=topic=2312.msg22764#msg22764 date=1265411089]

We will use a faxserver, send the fax as an email and the faxserver will send the email as fax.
[/quote]

cavagnaro, could you tell which faxserver you will plan to use?

[/quote]

We will use RightFax, but we have also tested the Alcatel FaxServer. Just be sure that your faxserver can receive emails and that is basically it

Offline finaluser

  • Newbie
  • *
  • Posts: 6
  • Karma: 0
Re: GVP - Want to send a FAX when pressing an option
« Reply #11 on: February 08, 2010, 04:04:27 AM »
RightFax is a good option, I deploy one similar solution using Xmedius Fax (very recommended)

1. From GVP we use a WebService to build the "fax document" (we build a html document) and publish in the document on a web server, the WS returns the URL to document.
2. We build the email on GVP Code using CDO and attaching the http document url (from ws)
3. Done.

Offline sitto

  • Newbie
  • *
  • Posts: 44
  • Karma: 0
Re: GVP - Want to send a FAX when pressing an option
« Reply #12 on: February 09, 2010, 03:37:08 PM »
Thanks. Just confirm you all do this with fax in the same call, right? no fax back?

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: GVP - Want to send a FAX when pressing an option
« Reply #13 on: February 09, 2010, 04:17:21 PM »
Will depend on your faxserver load and capabilities