Send formatted page via Email

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Send formatted page via Email

    I'm urgently looking for a code which will automatically sends a formatted
    page, including the fonts and layouts
    via email. I do know how to send a mesagge via email, with all the details to
    be sent, but the message does not
    look nice as it is all in the same font and not nice aligned. So the request
    is How can have a page automaticaly sendvia email
    which looks exactly the same as on shown on the web.



    whatsaname Guest

  2. Similar Questions and Discussions

    1. Send an entire page in email.
      Hi PHP coders, I have this below but do not know what to place in this section to get an entire dynamic page to be sent to any email similar to...
    2. Send email from FMS?
      Is it possible to send an email from FMS? If not, how would I go about creating a connection from FMS to a http server running PHP? Just use...
    3. Group email doesn't send because of bad email
      Hi, say I have to email 100 people at once, but one of the email addresses is bad, meaning formatted right but does not exist anymore. Right now,...
    4. send an email from ASP page
      Hi, I wish to send the user entered data through email to the Admin. Iam trying to use CDO object but it gives me the following message.. ...
    5. How can I send the page in the body of email.
      I want to send the page in the body of the email , just like the functionality of the send page in the browser explorer . I have tried the...
  3. #2

    Default Re: Send formatted page via Email

    Hi

    When you are displaying the Actual Web page online, how you are displaying the
    page.? here are you using any style sheet for this to look good.
    if you are using some stylesheet then you need to include the same style
    sheet in the cfmail also. then your mail will looks like the same format.

    do like this:

    <cfmail>
    <include css>
    ( here when you are including the css give the full path of the css
    including your site address.
    for eg: [url]http://www.sitename.com/css/style.css[/url]
    )
    <cfmail>

    or else if yout are not using the stylesheet then you need to write style for
    each info.

    vkunirs 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