Advertise Here

Author Topic: [[Request]] Email Form  (Read 7453 times)

0 Members and 1 Guest are viewing this topic.

Offline Seldom Fail

  • Helpers
  • *
  • Posts: 2082
  • Helping for 3 years! :)
    • View Profile
    • My Site!

  • Total Badges: 26
    Badges: (View All)
    Sixth year Anniversary Fifth year Anniversary Apple User Search Poll Voter
[[Request]] Email Form
« on: October 27, 2009, 07:30:25 pm »
Can someone make a form that people can fill out kind of like this: http://www.risingupsunday.com/pages/risingupsunday/contact.php

but instead of it going to Microsoft Outlook it sends the message as a pm? Or instead of going to Microsoft Outlook it sends an email from there?
<--- Donate to SMF For Free! :D

Offline MMFWCL

  • SMF For Free Member
  • *
  • Posts: 51
  • http://cpusa.comli.com/index.php
    • View Profile
    • http://cpusa.comli.com/index.php

  • Total Badges: 10
    Badges: (View All)
    Topic Starter Combination Level 2 Level 1 50 Posts
Re: [[Request]] Email Form
« Reply #1 on: December 18, 2009, 11:28:04 pm »
Here you go, just put it in a page, or headers/footers w.e works for you

Code: [Select]
<html>
<body>

<form action="mailto:ENTER EMAIL ADDRESS HERE">
First name:
<br /><input type="text" name="firstname">
<br>
Site Username:
<br />
<input type="text" name="SU">
<br />
E-Mail:
<br />
<input type="text" name="em">
<br />
Subject:
<br />
<input type="text" name="sub">
<br />
Type your question in the following field:
<textarea rows="10" cols="30">
Type it HERE!
</textarea>
<br />
<input type="submit" value="Submit" />

</form>

</body>
</html>


where it says ENTER EMAIL ADDRESS HERE just erase that and put your email, so when suomebody clicks submit, then it will send u an email
Need help with something internally with a computer?
http://cpusa.comli.com/index.php

Offline K I L L A

  • SMF For Free Full Member
  • *
  • Posts: 199
  • ''As soon as one is born, one starts dying.''
    • View Profile

  • Total Badges: 17
    Badges: (View All)
    Search Windows User Topic Starter Combination Level 3
Re: [[Request]] Email Form
« Reply #2 on: December 28, 2009, 11:32:58 pm »
Here you go, just put it in a page, or headers/footers w.e works for you

Code: [Select]
<html>
<body>

<form action="mailto:ENTER EMAIL ADDRESS HERE">
First name:
<br /><input type="text" name="firstname">
<br>
Site Username:
<br />
<input type="text" name="SU">
<br />
E-Mail:
<br />
<input type="text" name="em">
<br />
Subject:
<br />
<input type="text" name="sub">
<br />
Type your question in the following field:
<textarea rows="10" cols="30">
Type it HERE!
</textarea>
<br />
<input type="submit" value="Submit" />

</form>

</body>
</html>


where it says ENTER EMAIL ADDRESS HERE just erase that and put your email, so when suomebody clicks submit, then it will send u an email
This looks very helpful and useful for me..but how do I add it to a custom tab?

Offline Omniscient

  • SMF For Free Member
  • *
  • Posts: 92
    • View Profile

  • Total Badges: 10
    Badges: (View All)
    Topic Starter Combination Level 2 Level 1 50 Posts
Re: [[Request]] Email Form
« Reply #3 on: December 29, 2009, 11:31:53 am »
You'll need to use the Web Page Editor,

Admin CP > Web Page Editor >

Create a new Web Page, and click the HTML Button, insert the code into the text box that appears, save the Web Page, Now you'll need Custom Tabs.

Admin CP > Manage Styles > Custom Tabs.

Create a new Tab, name it to you're needs, then take the link that the Web Page Editor give you for the Web Page you created and enter it into the URL text box for the Custom Tab.

For further assistance, here are some Guides on Custom Tabs, and the Web Page Editor.

Web Page Editor Guide
Custom Tabs Guide

Offline K I L L A

  • SMF For Free Full Member
  • *
  • Posts: 199
  • ''As soon as one is born, one starts dying.''
    • View Profile

  • Total Badges: 17
    Badges: (View All)
    Search Windows User Topic Starter Combination Level 3
Re: [[Request]] Email Form
« Reply #4 on: December 29, 2009, 12:50:09 pm »
You'll need to use the Web Page Editor,

Admin CP > Web Page Editor >

Create a new Web Page, and click the HTML Button, insert the code into the text box that appears, save the Web Page, Now you'll need Custom Tabs.

Admin CP > Manage Styles > Custom Tabs.

Create a new Tab, name it to you're needs, then take the link that the Web Page Editor give you for the Web Page you created and enter it into the URL text box for the Custom Tab.

For further assistance, here are some Guides on Custom Tabs, and the Web Page Editor.

Web Page Editor Guide
Custom Tabs Guide
Thanks that helped.
It doesn't work with chrome and on FF, it doesn't send it from the forum, it asks you to open gmail or yahoo mail and then you have to write out the e-mail.Does it send the email from the forum with IE?I never use IE because it freezes my computer..But can someone check if they have IE..Like register on my forum really quick..

www.alexsgamereviews.smfforfree3.com

Offline Java

  • SMF For Free Full Member
  • *
  • Posts: 121
    • View Profile
    • Civegg

  • Total Badges: 13
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [[Request]] Email Form
« Reply #5 on: February 16, 2010, 05:39:05 pm »
Go to this link,

http://vexegg.smfforfree.com

That is my free SMF website, click on the very top link that says Contact Us, something like that?

Offline Pk0wnedall

  • SMF For Free Newbie
  • *
  • Posts: 6
    • View Profile

  • Total Badges: 7
    Badges: (View All)
    Linux User Mobile User Topic Starter Level 1 First Post
Re: [[Request]] Email Form
« Reply #6 on: March 11, 2010, 12:58:52 am »
Here you go, just put it in a page, or headers/footers w.e works for you

Code: [Select]
<html>
<body>

<form action="mailto:ENTER EMAIL ADDRESS HERE">
First name:
<br /><input type="text" name="firstname">
<br>
Site Username:
<br />
<input type="text" name="SU">
<br />
E-Mail:
<br />
<input type="text" name="em">
<br />
Subject:
<br />
<input type="text" name="sub">
<br />
Type your question in the following field:
<textarea rows="10" cols="30">
Type it HERE!
</textarea>
<br />
<input type="submit" value="Submit" />

</form>

</body>
</html>


where it says ENTER EMAIL ADDRESS HERE just erase that and put your email, so when suomebody clicks submit, then it will send u an email

Okay i want this, But i want it on a different page can you please make it so it goes on a different page like on "Contact us" Page

Also it opens up as Outlook express... can you fix these problems and resend the code Thanks.
« Last Edit: March 11, 2010, 01:19:58 am by Pk0wnedall »

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: [[Request]] Email Form
« Reply #7 on: March 11, 2010, 10:59:47 am »
Okay i want this, But i want it on a different page can you please make it so it goes on a different page like on "Contact us" Page

Also it opens up as Outlook express... can you fix these problems and resend the code Thanks.

They cannot make it go on a different page - you need to create the page in webpage editor then create a tab for it.. there are directions in the thread for doing that

Quote
You'll need to use the Web Page Editor,

Admin CP > Web Page Editor >

Create a new Web Page, and click the HTML Button, insert the code into the text box that appears, save the Web Page, Now you'll need Custom Tabs.

Admin CP > Manage Styles > Custom Tabs.

Create a new Tab, name it to you're needs, then take the link that the Web Page Editor give you for the Web Page you created and enter it into the URL text box for the Custom Tab.

As to it opening in Outlook Express - its going to go by your computers Preference settings and open the email client you use - this one's not setup to do otherwise - it would have to be a totally different code.

Offline Pk0wnedall

  • SMF For Free Newbie
  • *
  • Posts: 6
    • View Profile

  • Total Badges: 7
    Badges: (View All)
    Linux User Mobile User Topic Starter Level 1 First Post
Re: [[Request]] Email Form
« Reply #8 on: March 11, 2010, 11:30:33 pm »
Okay i want this, But i want it on a different page can you please make it so it goes on a different page like on "Contact us" Page

Also it opens up as Outlook express... can you fix these problems and resend the code Thanks.

They cannot make it go on a different page - you need to create the page in webpage editor then create a tab for it.. there are directions in the thread for doing that

Quote
You'll need to use the Web Page Editor,

Admin CP > Web Page Editor >

Create a new Web Page, and click the HTML Button, insert the code into the text box that appears, save the Web Page, Now you'll need Custom Tabs.

Admin CP > Manage Styles > Custom Tabs.

Create a new Tab, name it to you're needs, then take the link that the Web Page Editor give you for the Web Page you created and enter it into the URL text box for the Custom Tab.

As to it opening in Outlook Express - its going to go by your computers Preference settings and open the email client you use - this one's not setup to do otherwise - it would have to be a totally different code.

Can you please change the code so it oesnt do though outlook.

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: [[Request]] Email Form
« Reply #9 on: March 12, 2010, 10:05:51 am »
Can you please change the code so it oesnt do though outlook.

No, sorry.. I do not have time to do that.  Search thru the Codes Board or the Codes Index  (its pinned to the top of the Codes Board) and see if there is another code for this.   

Offline InsertName

  • SMF For Free Sr. Member
  • *
  • Posts: 284
    • View Profile

  • Total Badges: 13
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [[Request]] Email Form
« Reply #10 on: March 12, 2010, 05:51:02 pm »
The way you are suggesting this to work would not be very user friendly.

You are assuming that your members have outlook setup on their computers.

I for one have Outlokk set up on my PC for business purposes, but before-hand i had no need for it,

The form as it stands i feel is a perfectly fine way of having a member contact you, the outcome is the same, they send... you receive...

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: [[Request]] Email Form
« Reply #11 on: March 12, 2010, 08:15:25 pm »
The way you are suggesting this to work would not be very user friendly.

You are assuming that your members have outlook setup on their computers.

I for one have Outlokk set up on my PC for business purposes, but before-hand i had no need for it,

The form as it stands i feel is a perfectly fine way of having a member contact you, the outcome is the same, they send... you receive...

InsertName .. this code does not assume people use Outlook Express and is not set up to use it at all.    If I use this code my Thunderbird email cllent opens up -  because that is the email program I use on my computer.    What PKOwned is looking for is a totally different type of contact forum - one that does not use a simple html mailto: link that opens up a message in your email client but instead is an actual contact form where you can fill out the message online then send it to the email address set in the code  -  Im not sure if there is one listed in the Codes Board or not.
« Last Edit: March 12, 2010, 08:22:41 pm by simply sibyl »

Offline bird

  • SMF For Free Full Member
  • *
  • Posts: 131
    • View Profile

  • Total Badges: 14
    Badges: (View All)
    Fourth year Anniversary 100 Posts Third year Anniversary Level 3 50 Posts
Re: [[Request]] Email Form
« Reply #12 on: December 27, 2010, 11:44:12 am »
Forum Url: http://www.birdnestforum.info/
It Has Error Massage,

 

Related Topics

  Subject / Started by Replies Last post
12 Replies
4643 Views
Last post September 10, 2007, 04:58:39 pm
by Kimmie
3 Replies
1536 Views
Last post May 06, 2008, 08:06:24 am
by simply sibyl
12 Replies
7477 Views
Last post July 01, 2009, 01:25:55 pm
by JayB
1 Replies
1826 Views
Last post June 29, 2009, 01:28:29 am
by simply sibyl
4 Replies
3975 Views
Last post October 12, 2012, 09:10:20 am
by bird