|
Hmm... that's a little more complex. Because that requires both parsing the request, and adding that user to the CC list. Not sure you could do that with just HTML.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
I have investigated, outlook rules have a facility to "Do an Action with specific words in the body of the message"
So all I have to do is add these words to the body if Yes is selected.
It will then do the action.
In this case send a reply.
------------------------------------
"I'm going to walk around a field dangling my keys on a bit of string until I hear whistling noises. "
Steve Harris 2009
|
|
|
|
|
OK, well, if outlook can support that, then you would have to put outlook into the chain, instead of just having a mail server do your work for you. Even then, I'm not sure how to optionally insert the word, although if you have a checkbox, I think it's name may be inserted in the form only if it is checked.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Plenty times have I seen code such as this
<a href="mailto:jo@blogs.com?subject=HTML Email CC and Autoreply Help Required&body=The Solution in one long string no greater than 256 characters&cc=fred@smith.com&bcc=secret@address.com">There you go!</a>
but, with server-side script HTML form can be processed with CC and/or BCC being used but never have I seen this without server-side scripting.
For an auto-responder you could give this a try Outlook 2003/2007 Out-of-Office Autoresponder[^]
modified 1-Aug-19 21:02pm.
|
|
|
|
|
Owing to a residual dimness on my part, I forgot that an autoreply is not possible, as it, (the original message), is being sent from a website not an address!
The message contains the senders Email as part of the message, is it possible to pick this up and reply?
Or, another approach, when the sender completes the form, can I have the script on the webpage hold that address as a string, then create an email to that address with a message held within the webspace.
(I am sure it can, and could probably hunker down and do this given time, but I am pushed for that commodity).
Something like
<form method="post" enctype="text/plain" action='mailto:webaddress><br />
<input type="hidden" name="To" value="Subject">
Where webaddress is defined by an input
(Is this even poss in HTML?)
------------------------------------
"I'm going to walk around a field dangling my keys on a bit of string until I hear whistling noises. "
Steve Harris 2009
|
|
|
|
|
As richard said, unless you do something funky within outlook, and essentially have it act as a replacement scripting engine, you're asking far more logic and branching than is possible with just pure HTML.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
What would you suggest?
Try something with ASP?
(I am very weak with ASP, but have done some things).
Or use a bit of behind the scenes C# or VB on the web page?
I would appreciate a good link for tips in that direction.
(or even, if there is one, a CP Article! )
------------------------------------
"I'm going to walk around a field dangling my keys on a bit of string until I hear whistling noises. "
Steve Harris 2009
|
|
|
|
|
hiiiiii to all
any one can tell that how to write connection string for the web server as we write for local system
<connectionstrings
add="" name="ConnString" connectionstring="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\sivally\rizvanhttp\httpdocs\quote.mdb;Persist Security Info=True;>
please reply how to write
<div class=" forumsig"="">rizvan sivally
|
|
|
|
|
|
i want to make a forum.
please tell me from where i can get a working template.
i want to develop it in html.
also tell me various important aspects to cover in it.
i wanted to know how can i display the IP address of the visitor on my site and also how to transfer it in my oracle database.
i wanted to know how to write the coding for COMPOSE page like , this site or gmail account.., i do not know how to implement Bold , Italic, and other smilieys...
|
|
|
|
|
sangeeta2009 wrote: i want to make a forum.
please tell me from where i can get a working template.
i want to develop it in html.
also tell me various important aspects to cover in it.
The fact that you are asking all these questions together suggests that your knowledge is far from the level required for such a task. Also this question is far too broad for a forum like this. Your first step is to buy a book on Web Development (ASP.NET is a good start), study and learn, and then try and implement some of the things you have learnt.
|
|
|
|
|
|
I copied a file and changed its extension to an xml file which is its correct file format. I used the C++ CopyFile function. This new file is then sent to an html page that displays it as a link on a webpage. I typed the link in the address bar and it opens up just fine but as a link on a webpage, it does not. Why is that?
This is how the link is displayed on the page:
div.innerHTML = "Click to view file. <a href='C:\\DOCUME~1\\someuser\\LOCALS~1\\Temp\\tempImages\\test.xml'>'C:\\DOCUME~1\\someuser\\LOCALS~1\\Temp\\tempImages\\test.xml</a>";
Any help would be much appreciated.
|
|
|
|
|
At a guess, either it's because the file is using a local path ("C://...") and your security settings do not allow it or incorrect headers are being sent.
|
|
|
|
|
I pointed it to another file in the same directory and it seems to be working just fine. What do you mean by incorrect headers?
|
|
|
|
|
Actually, I don't think it'll be just that. But you can try using an intermediary file that reads and outputs the contents of a file with a local path. Dunno how you'd do it in whatever language you're using but in PHP you do as follows:
<?php
header("Content-Transfer-Encoding", "binary");
header('Cache-Control: maxage=3600');
header('Pragma: public');
header('Content-type: application/csv');
header('Content-Disposition: attachment; filename="fastrackexport.csv"');
readfile('C://fastrackexport.csv');
flush();
?>
I believe there something similar in asp.net.
|
|
|
|
|
Hi all,
I have a CSS drop-down menu within a top frame, and whenever I run it most of the menus are cut off, as the main (target) frame takes priority. I have tried altering the z-order priority from within the main calling html, the one that sets the frames, etc... and doesn't seem to fix the problem.
Any ideas?
Thanks in advance.
Alain
|
|
|
|
|
I don't think you can roll css out of it's frame. I would suggest trying a different layout than frames / a different menu. You might be able roll it over an iframe, however - you'd need to test. I've never seen it done before.
|
|
|
|
|
Hi Marc,
Thanks for your reply. It really needs to be a frame layout, as the main application that I'm displaying in the target (main frame) is a Java applet that I have no control over it. I am not able to write any code on the Java applet as it's generated by a different process. The only option that I have is to embed the Java applet in a HTML call, but the calling application needs to have the page to itself. hence the reason for adding a frames layout to allow me to set a menu for the embed applet.
I'm open for any ideas if you think I can achieve the same result in a different way?
Thanks
Alain
|
|
|
|
|
Try adding the
wmode="transparent"
property to your embed tag.
|
|
|
|
|
Hi Mark,
Thanks your reply. I will try the "wmode" option tomorrow. I will let you know.
Thanks
Alain
|
|
|
|
|
post code as well and I may be able to help further
|
|
|
|
|
Hi, I'm trying to find a working example of how to properly install a scriptable npapi plugin in firefox. My understanding is that the plugin gets packaged together with an rdf file into an .xpi package. I chose a sample xpi that's freely available on the internet, and which I can manually install without problems:
http://ff-activex-host.googlecode.com/files/axhost-r27.xpi
Then uninstalled and tried to re-install it with the following html code:
<embed type="application/x-itst-activex"
pluginurl="http://ff-activex-host.googlecode.com/files/axhost-r27.xpi"
width="30" height="20"
</embed>
Firefox's plugin finder service says: No suitable plugin found. Does anyone know how to implement this properly so the finder service works? I'm pretty lost. Many thanks for your help!
All the best, TJ
|
|
|
|
|
Have you tried FireFox's own forum? You may get a quicker answer there.
|
|
|
|
|
hy,
I need to build two handle slider by which user can fix their range for selection just like for ex.
http://www.jamesallen.com/loose-diamonds-search/[^]
I try it from google help but i cant achieved it.
I am Using .net 2.0 with ajax enabled
Any body their to help me I needed it badly
|
|
|
|