This shows you how to send a attachment via email using asp.
strFile = "c:\dir\file.vcs"
Set oNewMail = Server.CreateObject("CDONTS.NewMail")
oNewMail.From = "fuscptc@eximc.nam.dow.com"
oNewMail.To = "u369373@eximc.nam.dow.com"
oNewMail.Subject = "Updated Education &...
Send an attachment in a...
Sending html based emai...
This shows you how to send a html email using asp.
Set objMailJ1 = CreateObject("CDONTS.NewMail")
html = "
”
html = html & “
”
html = html & “
Intranet
”
html = html & “
”
objMailJ1.From=”intranet@no-spam.com”
objMailJ1.To=”sender@no-spam.com”
objMailJ1.Subject=”Subject...
Change the display name...
Shows you how to change the display name in an email sent from asp.
objMailJ1.From= "Jason Mohan <jasonmohan@nospam.com>"
objMailJ1.To= "" & email_address & ""
objMailJ1.Subject="New Code:: Activation Link"
objMailJ1.BodyFormat=0
objMailJ1.MailFormat=0
objMailJ1.Body=html
objMailJ1.Send
SHARETHIS.addEntry({...
Sending HTML email with...
Below is how to send HTML emails from PHP.
<?php
$to = 'email_address‘;
$subject = ‘subject‘;
$random_hash = md5(date(’r', time()));
$headers = “From: email_address\r\nReply-To: email_address“;
$headers .= “\r\nContent-Type: multipart/alternative;...


