Website Emails

This is a discussion on "Website Emails" within the Web Page Design section. This forum, and the thread "Website Emails are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jul 21st, 2005, 12:28
Junior Member
Join Date: Mar 2005
Location: Australia
Posts: 30
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to joshcxa Send a message via MSN to joshcxa
Website Emails

How do I create those html emails.
You know the ones that look like a website in your inbox.
Reply With Quote

  #2 (permalink)  
Old Jul 21st, 2005, 16:25
Highly Reputable Member
Join Date: May 2005
Location: U.K
Age: 21
Posts: 739
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to benbramz
its generated from a server side script. a good example of this is asp cdonts....(http://www.nt-webspace.com/asp%20tut...ail-cdonts.asp)

all depends on your platform though..
Reply With Quote
  #3 (permalink)  
Old Jul 21st, 2005, 21:38
herkalees's Avatar
Highly Reputable Member
Join Date: Jul 2005
Location: Massachusetts, USA
Age: 87
Posts: 576
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to herkalees Send a message via MSN to herkalees Send a message via Yahoo to herkalees
Re: Website Emails

Quote:
Originally Posted by joshcxa
How do I create those html emails.
You know the ones that look like a website in your inbox.
This link provides some good information: http://www.isitebuild.com/html-email.htm

I'm currently diving into it myself for a small newsletter I'm doing on my site. I've run into an issue though, I've only been able to get the html to display properly on the receiving end if the person views their email with a program like Outlook or Thunderbird.

I've sent my HTML emails to yahoo!, gmail and MSN accounts and when viewed in their respective online web access interfaces, the html is rendered all wrong, and usually removed.

I'll let you know if I figure out how to make the HTML display well in web-based interfaces like yahoo!, gmail, etc...
Reply With Quote
  #4 (permalink)  
Old Jul 21st, 2005, 23:12
Highly Reputable Member
Join Date: May 2005
Location: U.K
Age: 21
Posts: 739
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to benbramz
well the link to the script is the way ive used it and found no problems with msn or gmail.

however its asp cdonts. depends on whether your using asp

Code: Select all
 <%

    Dim myMail
    Dim HTML
    Set myMail = CreateObject("CDONTS.NewMail")

    HTML = "just type the html"
    HTML = HTML & "and it can be on other lines"
    HTML = HTML & "like this"
   

    myMail.From="someone@microsoft.com"
    myMail.To="********@msn.com"
    myMail.Subject="Sample CDONTS HTML Message"
    myMail.BodyFormat=0
    myMail.MailFormat=0
    myMail.Body=HTML
    myMail.Send
    set mymail=nothing
    Response.Write "Message Sent!"
    %>
Reply With Quote
Reply

Tags
website, emails

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Spam Emails businessservicesuk Webforumz Cafe 13 Oct 18th, 2007 23:00
williams emails simonb Free Web Site Critique 5 Jul 25th, 2007 20:31
Dodgy Emails! bruno89 Webforumz Cafe 10 Apr 2nd, 2007 12:01
Generating automatic emails DennisK PHP Forum 10 Nov 28th, 2006 11:38
Automated Emails.... courtjester Classic ASP 11 Sep 9th, 2004 07:43


All times are GMT. The time now is 22:01.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43