ASP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Iron Speed
Go Back   ASP Free ForumsProgrammingASP Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
Ajax Application Generator Generate database and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!
  #1  
Old February 8th, 2008, 01:44 AM
gerlatie gerlatie is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2008
Posts: 1 gerlatie User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 8 m 8 sec
Reputation Power: 0
Cdont Excel Attachment

I use cdont for sending automatically my mails, but now i want to send a excel attachment but the reciever can't get it open. He has send it back to me and he is wright, it isn't any more a excel file. Does somebody now a solution?

Code:
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="mizn.xls"
myMail.From="***"
myMail.To="***"
myMail.AddAttachment ("C:\Inetpub\vhosts\***/mizn.xls")
myMail.Configuration.Fields.Item _
'Name or IP of remote SMTP server
myMail.Configuration.Fields.Item _
'Server port
myMail.Configuration.Fields.Item _
myMail.Configuration.Fields.Update
myMail.Send
set myMail=nothing
%>

Last edited by jmurrayhead : February 8th, 2008 at 05:23 AM.

Reply With Quote
  #2  
Old February 9th, 2008, 03:09 PM
markoc's Avatar
markoc markoc is offline
Contributing User
ASP Free Regular (2000 - 2499 posts)
 
Join Date: Nov 2003
Location: UK
Posts: 2,066 markoc User rank is First Lieutenant (10000 - 20000 Reputation Level)markoc User rank is First Lieutenant (10000 - 20000 Reputation Level)markoc User rank is First Lieutenant (10000 - 20000 Reputation Level)markoc User rank is First Lieutenant (10000 - 20000 Reputation Level)markoc User rank is First Lieutenant (10000 - 20000 Reputation Level)markoc User rank is First Lieutenant (10000 - 20000 Reputation Level)markoc User rank is First Lieutenant (10000 - 20000 Reputation Level)markoc User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 2 Weeks 6 Days 17 h 5 m 24 sec
Reputation Power: 127
Cdont Excel Attachment

firstly this code isn't CDONT it's CDOSYS.

personally i wouldn't use a file path, i would create a virtual directory away from the Inetpub folder and place the report files in there and then map the path accordingly.

try using the code example below and edit as ness:

Code:
Set objCDOMail = CreateObject("CDO.Message")
Set objConfig = CreateObject("CDO.Configuration")
Set Fields = objConfig.Fields
sch = "http://schemas.microsoft.com/cdo/configuration/"

strAttachment = "[FULL FILE PATH]"
	
With Fields
	.Item(sch & "sendusing") = 2
	.Item(sch & "smtpserver") = "[IP_ADDRESS or DNS_NAME]"
	.Item(sch & "smtpserverport") = 25 
	.Item(sch & "smtpconnectiontimeout") = 30
	.Item(sch & "sendusername") = "username"
	.Item(sch & "sendpassword") = "password"
	.Update
End With	
	
With objCDOMail
	Set .Configuration = objConfig
	.From = "me@mydomain.com"
	.To = "you@yourdomain.com"
	.Subject = "your Report" 
	.TextBody = "Please find attached the requested report."
	.addAttachment strAttachment
	.Send
End With
	
Set objCDOMail = Nothing
Set Fields = Nothing
Set objConfig = Nothing
Comments on this post
jmurrayhead agrees!
__________________
Hope this advise helps.

If so please show your appreciation by adding reputation points (clcik gauge image on top right of this post).

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingASP Development > Cdont Excel Attachment


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five "checkpoints" for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway