how do I create an email marketing campaign?

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default how do I create an email marketing campaign?

    You know those annoying emails you get from ebay, etc... how do I create one of my own from scratch?
    I've seen plenty of online services that have templates for you to plug in the information
    (such as [url]www.constantcontact.com[/url]), but I don't know where to even start my research for building one myself.
    Are these things called MIME, dynamic email or what? Is there a recommended program I should use
    to build them? ANY info would be extremely helpful!

    Thanks so much! :)
    Shari


    slarson75 webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Email Marketing Software
      Hi, I know that this is off - topic, but can anyone recommend any email marketing software i.e sends bulk email to opt-in email addresses, and ...
    2. Email marketing
      Hello, I want to know if it is possible to check how many times a email is opened or read. We send a lot of rich emails (no-spam) and want to check...
    3. OT - ASP email marketing solutions - recommendations
      Hi All Apologise for the off topic. I have a client who has and opt in list of clients, his website is hosted on a windows server with asp and...
    4. Create email accounts and subdomains
      Can coldfusion create email accounts and or subdomains on the fly? For instance, someone signs up for membership, credit card is processed,...
    5. Email Marketing tool/newsletter
      I am wondering how I could go about checking to see if an e-newsletter that was sent out using the cfmail function was opened, and how many times...
  3. #2

    Default Re: how do I create an email marketing campaign?

    Hi Shari,

    Here's how I do it:

    1. I build my page in DW.
    2. I upload all the images needed to a particular folder on my server.
    3. I then change all references to my images and links from relative to absolute ([url]http://www.mysite.com/myimage.jpg[/url])
    4. Then what you have to do is use a server language to send the email.

    For instance, to email a picture using ASP/VBscript and CDO (a popular email component) it's as simple as this - running this ASP script will send an email and inside the email would contain a picture. Building on this example you should be able to build your email campaign.

    I hope this helps!

    -------------- code start -------------------

    dim mail

    'Create the object
    set mail = server.CreateObject("CDONTS.NewMail")
    mail.From = "Shari@SharisSite.com" 'This is the address that the email is
    mail.To = "massitalian@netscape.net" 'This is the email address that you are
    mail.Subject = "Heres my pic" 'The subject as it will appear in the
    mail.BodyFormat = 0 ' 1 = text only
    mail.MailFormat = 0 ' 1 = text only

    mailbody = "Hey there, here is a pic of me!" & "<p>"
    mailbody = mailbody & "<img src='http://www.sharisSite.com/mypic.jpg'>"
    mail.body = mailbody
    mail.Send 'Send the message out.
    set mail = nothing 'Clean up after yourself.



    TropeIA Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139