il problema non sta nel form e non esiste "un comando e via".
chi si occupa della spedizione è il server, quindi devi dirgli che deve fare;
e lo fai con uno dei linguaggi supportati dal server stesso.
non è tanto icasinato... solo non sai dove metter mano.
asp o php sta a te sceglierlo, magari in vista di un approccio alla programmazione.
visto il recente integro del componente Persits da parte di Aruba, che semplifica molte operazioni asp, ti suggerirei questo linguaggio.
il componente te devi installare da solo.
molto semplice: segui le istruzioni.
prendi spunto dagli esempi (dagli esempi del pacchetto Persits),
e puoi modifica il file xml secondo le istruzioni del file stesso:
codice:
<?xml version="1.0" encoding="utf-8"?>
<contactFormConfiguration>
<!--
-- An e-mail address which will be used to receive messages from your contact form.
-- You can specify several e-mail addresses separating them with a comma.
-- For example: first_email@domain.com, second_email@domain.com, third@domain.com
-->
<emailTo>your_email@yourdomain.com</emailTo>
<!--
-- A server script type which will process sending e-mails. It depends on your
-- hosting and in the current version of the contact form it is allowed to use
-- two types: php (Apache, PHP Hosting); asp (IIS web server, ASP).
-->
<serverProcessorType>asp</serverProcessorType>
<!--
-- A name of the script file which process sending e-mails on your server (without
-- extension). The name contact is used by default.
-->
<serverProcessorFileName>contact</serverProcessorFileName>
<!--
-- Text showing to the user when the form is submitted without any errors.
-->
<messageSentText>Thank you for your message.</messageSentText>
<!--
-- Text showing in case the form is not submitted because of a server error.
-->
<messageSentFailedText>Error. The Message Could Not Be Sent. Please try again.</messageSentFailedText>
<!--
-- Text your visitor will see while waiting till the processing is over.
-->
<formProcessingText>processing...</formProcessingText>
<!--
-- Your SMTP server (for ASP only).
-->
<smtpServer>smtp.tuosito.com</smtpServer>
<!--
-- Your SMTP port (for ASP only).
-->
<smtpPort>25</smtpPort>
<!--
-- Set whether to send the message as a plain text (true) or as HTML (false).
-->
<plainText>false</plainText>
<!--
-- ID of the input field (in the structure XML file) to use for the “from: ”
-- or “sender: ” label in your e-mail client.
-->
<emailFromSource>1</emailFromSource>
<!--
-- Subject of the e-mails that will be sent through this contact form or ID of
-- the input field (in the structure XML file) to use for the “subject: ” label
-- in your e-mail client.
-->
<subjectSource>MPPhotography.it</subjectSource>
</contactFormConfiguration>
dovrebbero bastare le modifiche che ti ho indicato
da qualche parte, nelle tue pagine, dovrebbe esserci un form con action="qualcosa.est"...
sostituisci qualcosa.est col nome del file che userai per spedire.
ci smanetti un po' ma dovresti farcela