I am working on a web based application. When a question is submitted by a user an e-mail is automatically sent to the admin team to answer it. I want to send a link containing the question on the e-mail. I can’t use doclink as it’s a web based application. I’m also using an agent to send the automatic e-mail.
Any ideas?
Subject: e-mailing document links on web based applications
Sure, build the URL link.
Subject: RE: e-mailing document links on web based applications
you may just wanna keep in mind that on the web, the document id generated by the server before the document is saved is different from the actual id assigned (after saving).
URL can be built as below :
“http://”+servername+“/”+db.filepath+“/[viewname]/”+cstr(DOCUMENTID)+“?OpenDocument”
u can use ?EditDocument to open in edit mode directly.
Subject: RE: e-mailing document links on web based applications
I put in the URL as suggested and it works. Thanks for your help