Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Paul_HP Design #1
Help with Formatting Forms that send emails
I designed a form page with Dreamweaver and set the action to send me an email
of the content of the form. The only problem is that the email format is in
plain text and would be difficult for my co-workers to decipher. I am trying
to find a way to send the contents of the form in a structured professional
format. It would be great if I could send the info in a format that was set up
like the form. If anyone could help I would appreciate it.
Paul_HP Design Guest
-
ColdFusion to send duplicate emails to sendmail
A coldfusion script that sends ONE email to ONE person. CF first put the email in the spool folder then submit to sendmail. The spool only has one... -
Can't send emails to internal mailbox
Hi guys, Before our company went through an upgrade, we had Exchange 5.5 and Win2k Server installed on 2 separate servers. At that time, I was... -
How do you send html emails
I have a html file that I need to email to our sales reps. I would like the html to to embedded in the email's body, like newsletter emails we all... -
Can't send UTF 8 emails. Keep getting question marks and other chars ... help please
Compose your mail message as following: ----------------------------------------- <HEAD> <meta http-equiv="Content-Type" content="text/html"... -
how to send html emails
I need to find out how to send html emails. Does anyone have any useful information on how to do this? I have looked it up on the net a bit but I'm... -
Joe Makowiec #2
Re: Help with Formatting Forms that send emails
On 24 May 2005 in macromedia.dreamweaver.appdev, Paul_HP Design wrote:
In general, if you don't want to use an HTML e-mail, you need to do> I designed a form page with Dreamweaver and set the action to send
> me an email of the content of the form. The only problem is that
> the email format is in plain text and would be difficult for my
> co-workers to decipher. I am trying to find a way to send the
> contents of the form in a structured professional format. It would
> be great if I could send the info in a format that was set up like
> the form.
something like:
Sender's address: 123 Main Street
Sender's City: Anytown USA 12345
To do this, you need to create the e-mail like:
PHP:
$body = 'Sender\'s address: ' . $_POST['streetAddress'] . "\n";
$body .= 'Sender\'s City: ' . $_POST['city'] . $_POST['zip'] . "\n";
where \n is the newline character
ASP/VBScript:
body = "Sender's address: " & request.Form("streetAddress") & vbCrLf
body = body & "Sender's city: " & request.Form("city") & request.Form
("zip") & vbCrLf
where vbCrLf is the newline character
--
Joe Makowiec
[url]http://makowiec.net/[/url]
Email: [url]http://makowiec.net/email.php[/url]
Joe Makowiec Guest
-
Manuel Socarras #3
Re: Help with Formatting Forms that send emails
to sent how? with action="mailto:john@doe.com" or calling a web app? in
this case wich server model/language?
Paul_HP Design wrote:> I designed a form page with Dreamweaver and set the action to send me an email
> of the content of the form. The only problem is that the email format is in
> plain text and would be difficult for my co-workers to decipher. I am trying
> to find a way to send the contents of the form in a structured professional
> format. It would be great if I could send the info in a format that was set up
> like the form. If anyone could help I would appreciate it.
>Manuel Socarras Guest



Reply With Quote

