We have a scheduled task which runs every 5mins and sends pending email campaign.
The scipt has been written in VB and following is the code which actually sends the mail:
set mailer = createobject("cdo.message")
mailer.subject = this_subject
mailer.from = "name<email address>"
mailer.to = this_to
mailer.htmlbody = this_body
mailer.send
set mailer = nothing
PROBLEM: The process is working fine for most of the email clients, but email body is cutting off for SOME of the clients with domains ending in rr. (road runner) and a few other miscellaneous domains.
Any suggestions or work arounds out there? Anyone else seen this problem with user receiving cut-off or incomplete HTML text emails?