Sending Attachement using APS Cdonts

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default Sending Attachement using APS Cdonts

    Hi

    I have a program which is used to send a mail with a
    attachment using cdonts when i attach a word file and send
    it ,i have the following problem while recieving the mail
    i find that the attachment is open in the body and it show
    all junk characters i want the attached file not to be
    opened.
    Please suggest me how i can i solve the above problem
    Please reply to me on my email addr [email]sandeep200179@yahoo.com[/email]
    The following is the code:-

    <%
    towho="sandeep@200179@yahoo.com"
    fromwho="Sandeep@hotmail.com"
    subject="New User created"
    Body="Auto Generated Mail Donot Reply"

    SendMail fromwho,towho,subject,Body

    sub sendmail(fromwho,towho,Subject,Body)
    dim myMail
    Set myMail=Server.CreateObject("CDONTS.Newmail")
    myMail.From=fromwho
    myMail.To=towho
    myMail.Subject=Subject
    myMail.Body=Body
    myMail.AttachFile Server.MapPath("user_manual.doc")
    myMail.Send
    Set myMail=nothing
    end sub
    %>
    Thanks

    Sandeep P Guest

  2. Similar Questions and Discussions

    1. Stream of DIME-Attachement
      Hello, I want to send binary files to a webservice by using DIME-Attachments. While the upload, I want to show a progressBar in the client...
    2. Need a Progressbar while File-Upload as SOAP-Attachement
      Hello, I have written a webservice to recive image-uploads. Since I want to encrypt the sent SOAP Messages, I use WSE and add the Pictures as a...
    3. Sending HTML formatted mail using CDONTS
      Does anyone have some sample code for sending an HTML formatted message using CDONTS? Thanks RE: Sending HTML formatted mail using CDONTS ...
    4. Sending message to SMTP server using CDONTS component
      I recently set up a web site which I am running locally on my laptop using ASP.Net. From a web form on the site I am attempting to send an email...
    5. CDONTS-Sending HTML mail-8000 character limit
      Hi all, I have seen a few messages about this in the archives, but none provide a comprehensive answer. Basically, I want to use CDONTS mail...
  3. #2

    Default Re: Sending Attachement using APS Cdonts

    Use CDO.Message.
    [url]www.aspfaq.com/2025[/url]


    "Sandeep P" <sandeep200179@yahoo.com> wrote in message
    news:0beb01c39e08$9ed60920$a101280a@phx.gbl...
    > Hi
    >
    > I have a program which is used to send a mail with a
    > attachment using cdonts when i attach a word file and send
    > it ,i have the following problem while recieving the mail
    > i find that the attachment is open in the body and it show
    > all junk characters i want the attached file not to be
    > opened.
    > Please suggest me how i can i solve the above problem
    > Please reply to me on my email addr [email]sandeep200179@yahoo.com[/email]
    > The following is the code:-
    >
    > <%
    > towho="sandeep@200179@yahoo.com"
    > fromwho="Sandeep@hotmail.com"
    > subject="New User created"
    > Body="Auto Generated Mail Donot Reply"
    >
    > SendMail fromwho,towho,subject,Body
    >
    > sub sendmail(fromwho,towho,Subject,Body)
    > dim myMail
    > Set myMail=Server.CreateObject("CDONTS.Newmail")
    > myMail.From=fromwho
    > myMail.To=towho
    > myMail.Subject=Subject
    > myMail.Body=Body
    > myMail.AttachFile Server.MapPath("user_manual.doc")
    > myMail.Send
    > Set myMail=nothing
    > end sub
    > %>
    > Thanks
    >

    Aaron Bertrand - MVP 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