Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
slarson75 webforumsuser@macromedia.com #1
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
-
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 ... -
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... -
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... -
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,... -
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... -
TropeIA #2
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



Reply With Quote

