EdwardMartinIII
Technical User
Big picture: I have technicians worldwide who move equipment around. For each "move," they're supposed to have a notification that they have "actioned" all these items of equipment in a certain way. Some actions might be "removing from dock." Some actions might be "delivering to client" Some actions might be "error-corrected this data." For each transaction, that list can include anywhere from one item to a few hundred items. Some transactions may include SVG data because of a signature component. The point is that the length can vary a LOT. And we keep adding actions.
In the past, I have been able to use mailto links fine, but in this case, the character count can vary wildly and often go way over the limit of the mailto link.
I have two choices of "hosting" solution:
[ul]
[li]Everyone gets a little local copy of the "site" on their computer, and we are satisfied with information being emailed around.[/li]
[li]I post the site to a Sharepoint location (they will let me host a site on SharePoint), change the pages to "ASPX" and try to find a solution that uses that resource (I know very little about operating in Sharepoint, so I don't even know if I can do it)[/li]
[li]I host all of this on a private server with a full stack until my client discovers it and fires me brutally for going "outside the fence."[/li]
[li]Some solution I don't know yet.[/li]
[/ul]
Other than the above, I have no server-side tools. This client will never let me install (for example) a stack somewhere. So there is no CGI solution.
So, at a certain point in my code, I have a single big JS variable, call it EmailString.
I can put EmailString into its own web page, and there it is. But I can't put EmailString into an email if it's too long.
Exploratory questions:
[ol 1]
[li]Can I open an email and then shovel data into it line-by-line instead of precomposing the email string?[/li]
[li]Can I open an email and tell it "for the body, send the contents of this other window" without violating the mailto link character limit?[/li]
[/ol]
I'm open to suggestions/ideas/etc., of course.
Edward
"Cut a hole in the door. Hang a flap. Criminy, why didn't I think of this earlier?!" -- inventor of the cat door
In the past, I have been able to use mailto links fine, but in this case, the character count can vary wildly and often go way over the limit of the mailto link.
I have two choices of "hosting" solution:
[ul]
[li]Everyone gets a little local copy of the "site" on their computer, and we are satisfied with information being emailed around.[/li]
[li]I post the site to a Sharepoint location (they will let me host a site on SharePoint), change the pages to "ASPX" and try to find a solution that uses that resource (I know very little about operating in Sharepoint, so I don't even know if I can do it)[/li]
[li]I host all of this on a private server with a full stack until my client discovers it and fires me brutally for going "outside the fence."[/li]
[li]Some solution I don't know yet.[/li]
[/ul]
Other than the above, I have no server-side tools. This client will never let me install (for example) a stack somewhere. So there is no CGI solution.
So, at a certain point in my code, I have a single big JS variable, call it EmailString.
I can put EmailString into its own web page, and there it is. But I can't put EmailString into an email if it's too long.
Exploratory questions:
[ol 1]
[li]Can I open an email and then shovel data into it line-by-line instead of precomposing the email string?[/li]
[li]Can I open an email and tell it "for the body, send the contents of this other window" without violating the mailto link character limit?[/li]
[/ol]
I'm open to suggestions/ideas/etc., of course.
Edward
"Cut a hole in the door. Hang a flap. Criminy, why didn't I think of this earlier?!" -- inventor of the cat door