Send page email

Hi.....
Just a quick question if i may.....
Is it possible to send a web page by e-mail?. If so how is this done.
Best Regards.
Dave Heppell

This is standard functionality in Internet Explorer but not in Firefox - there is, however, an add-on ''Send Page By Email'' - '''''http://sendpagebyemail.mozdev.org/''''' but I understand it supports only Windows platforms. If you are looking for Mac or Linux solutions, you could try here: http://www.makeuseof.com/tag/how-to-send-a-complete-webpage-by-email/

Similar Messages

  • Please help to send an email with html page in body

    I need an html page on the body of an email to send an email blast to our customers.

    HTML Emails can be a bit tricky. You can design them in Dreamweaver, but you really shouldn't send mass email through your personal email account (or your company account). That could get you blacklisted by corporate spam filters and make your email addresses pretty much useless.
    For mass email campaigns (over a few hundred email addresses) I use http://www.icontact.com.
    You can build the email right through their site (without DW) or you can import your html from DW to their service.
    Some things to keep in mind with HTML email...
    1. Use absolute links to images and files on a server you control
    2. Use a limited amount of inline css (no external or embedded css)
    3. Use table based layouts, css support is spotty at best with email clients
    4. The <head> will be stripped from a number of email clients, don't rely on anything between the <head> tags making it to your recipients
    5. Don't use an image-only email. HTML text is very important to keep it from being labeled spam, make the images secondary to the message, many email clients will not download images without the user's say-so
    6. Include an opt-out link so people can get off your list
    There are more things to watch out for, but those are the big ones. Here is some more good info: http://alt-web.com/Articles/HTML-Emails.shtml

  • When I send an email in Outlook 2010 I'm getting a blank HTML page tab showing up on my Firefox browser. Any ideas?

    I send an email in Outlook 2010 and I'm getting a blank page tab in Firefox with this address in the browser. The page says ''There are no items to show in this view''
    file:///C:/Documents%20and%20Settings/gkoch/Local%20Settings/Temporary%20Internet%20Files/%7B3CC4AC09-DE60-47D1-A08A-FE864958E679%7D/%7B050D6FB1-4E21-4ACC-9168-755D8BFCC2EF%7D.html
    This is occurring with Outlook. So is in that program or some link with Firefox

    If you are talking about your sender name (the one that appears on the From line when you compose an email) rather than your @icloud.com email address, to change it on your iOS device, go to Settings>Mail,Contacts,Calendars...tap iCloud under Accounts, tap your iCloud account at the top of the next screen, tap Mail at the bottom of the next screen, then enter the name you want to use in the Name field at the top.  Also go to icloud.com, sign into your account, open Mail, click the gear shaped icon on the bottom left and choose Preferences, go to the Accounts tab and enter the name you want to use in the Full Name field and click Done.

  • I am unable to send an email with an attachment I created in Pages.I have installed version 5.0.1

    I am unable to send an email with an attachment I created in Pages version 5.0.1. It also prevented me from sending out any other emails with or without  an attachment. I finally fixed my email so I could send out again but when I tried to send an attachment created in Pages it wouldn't allow it.  Can someone help me, please! Thanks!

    Pages 5 is having problems with GMail, Google and Yahoo. Dropbox may have fixed their problem with an update.
    Along with this problem and others, Apple has removed over 90 features from Pages 5.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Archive/trash Pages 5 and rate/review it in the App Store, then get back to work.
    Peter

  • HOW DO I SEND "PAGES" IN EMAIL SO THAT OTHERS CAN READ IT?

    HOW DO I SEND "PAGES" DOCUMENTS SO PC'S CAN READ THEM?

    Open the document, click Share in the Menu Bar > Send a Copy > Email > PDF is the safest but not easily edited on PC. You can choose Word if you know the person you are sending to has Microsoft Word.

  • When I send a 2 page email mavericks makes it 65 pages long! what to do?

    when I send a 2 page email mavericks makes it 65 pages long! what to do?

    If you think getting your web pages to appear OK in all the major browsers is tricky then dealing with email clients is way worse. There are so many of them.
    If you want to bulk email yourself, there are apps for it and their templates will work in most cases...
    http://www.iwebformusicians.com/Website-Email-Marketing/EBlast.html
    This one will create the form, database and send out the emails...
    http://www.iwebformusicians.com/Website-Email-Marketing/MailShoot.html
    The alternative is to use a marketing service if your business can justify the cost. Their templates are tested in all the common email clients...
    http://www.iwebformusicians.com/Website-Email-Marketing/Email-Marketing-Service. html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • Send page in EMAIL

    Hi,
    Is it possible to send a page as it is via mail to users. I have one page which has few reports and some graphs. I want to send the whole page as HTML to user Inbox, is that possible using APEX_MAIL.
    I was going though this thread
    Send page in rtf format via email
    and if I am not wrong this will send the URL as a link. I don't want to send a link but the page itself.
    Can anyone help please.
    Thanks in advance.
    Regards
    Amar

    This doesn't answer your question exactly, because I don't know how to send "a report" or "a graph" via email, but perhaps by looking at this you can work something out. This sends an email with page elements (not an URL to a page, but actual html stuff)
    declare
      l_body_html varchar2(4000);
    begin
    l_body_html := '<html><body>This is a table with three columns, table title element:'||:P7_DPR||'
    <table border=1 bordercolor="#0000FF" width=900><tr><td width=200><font size="2" face="Times">Parameter</font></td><td width=350>Value</td><td width=350>Remarks</td></tr>
    <tr><td>Description</td><td>'||:P7_DESC||'</td><td>'||:P7_DESC_REMARKS||'</td></tr>
    <tr><td>Retrieval Code</td><td>'||:P7_RETRIEVALCODE||'</td><td>'||:P7_RETRIEVAL_REMARKS||'</td></tr>
    <tr><td>Additonal Information</td><td>'||:P7_ADDITIONAL||'</td><td>'||:P7_ADD_REMARKS||'</td></tr>
    </table>
    </body>
    </html>';
      HTMLDB_MAIL.SEND(
          P_TO       => :P7_EMAILTO,
          P_CC       => :P7_EMAILCC,
          P_FROM     => '&[email protected]',
          P_SUBJ     => :P7_EMAILSUBJ,
          P_BODY     => l_body_html,
          P_BODY_HTML=> l_body_html);
        htmldb_mail.push_queue('mail.mydomain.com','25');
    end;One idea that might have merit would be to produce a PDF report with all your content, then email that PDF report? That sounds like a fun research project.

  • How do I send pages documents in my email to people who do not have pages? have pages?

    How do I send Pages Documents in my email to people who do not have Pages?

    Share > Send to Mail > PDF  will create a suitable size attachment in a new message in Mail

  • Script to merge data from Numbers into Pages document, export as PDF and send via email

    Hi,
    I am wondering if it would be possible to achieve the following with an applescript:
    1. Merge Names from Numbers into a multi-page Pages document.
    2. Export each page of the resulting document as a PDF
    3. Attach each of these PDFs to an email with specific text in the body of the email, setting the subject, the 'from' email address, as well as the 'to' email address from a field in the Numbers document.
    4. Optionally send the emails automatically.
    I would be glad to know if this is possible before I embark on trying to write such a script, and for any advice/script that would help me on my way.
    Thanks,
    Nick

    Thanks Bernard.  Sorry if my original post wasn't that clear.  I think you've pretty much got it in your paragraph starting "So, I think you're asking for", but will explain more in the hope that it will be clearer:
    I have a Numbers table with 2 columns: Name and Email.  I have say 50 people in this table and I need to email each person a version of a one page Pages document which would be identical except for their name.
    The Name field is the only field that needs to be merged into the Pages document (one time only).
    Once the merging has taken place the versions of the one page Pages document need to be exported as a PDF and attached to emails, one email from each person in the table in the Numbers document, with each email going to the email address corresponding to the name in the Numbers document.
    The text in the email would be identical except for the name again.  The text for the email body, subject as well as the 'from' field would be contained in the script (i.e. generated by the script).
    It would also be good to have the option of sending the emails automatically or manually, so that I could check that the emails that are generated are correct before sending.
    I hope that's clearer!
    Nick

  • I can't send an email because my page has changed

    I don't know what happened. I have a page that I can't understand. there is no place to send a email. I used to have a page that had download and other things at the bottom of the page and that page came up fast. Now I don't know what I have

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • Send - "Page by Email" disabled for PDF document in IE

    Hi,
    We're currently running 10g reports, through 10g Application Server (Forms&Reports) and producing PDF documents that are displayed in Internet Explorer.
    When viewing the report output the send "Page by Email" function is disabled. My outlook works fine and I've checked that my Email client is set to outlook in IE program settings.
    Anyone have any ideas on what I need to do to enable the "Page by Email" function?
    Note: I've also noticed that the View -> Source function is disabled.
    Thanks,
    Graeme

    Oh, before I forget View -> Source for a PDF document being disabled makes sence because its not a HTML document. PDF documents are viewable via a browser only with that to the downloadable pluggable com object that adobe (and other pdf reader software providers) provides us with.
    Cheers
    Q

  • HT4623 I received a message on my iPad re update to iO7 and I said yes, install. Now it's stuck on the agree/disagree page; nothing moves when I press Agree and Send by Email. Can anyone help?

    I received a message on my iPad re update to iO7 and I said yes, install. Now it's stuck on the agree/disagree page; nothing moves when I press Agree and Send by Email. Can anyone help?

    Reset iPad and continue with update.
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • When needing to send an email from Pages a new email document does not come up. PDF

    When needing to send email document from Pages when I hit Share, send via email then PDF no new email document comes up. Please advise.

    Chances are you have an "illegal" character in the file name such as a / or *.

  • Send an email from JSP page

    Hi everyone,
    What's the easiest way to send an email from a JSP page?
    Thanks in advance
    Chris

    If you mean from the client that displays JSP-generated HMTL, generate a "mailTo" tag. If you want to send an E-mail from the server, use the JavaMail API (http://developer.java.sun.com/developer/onlineTraining/JavaMail/)

  • TS3899 iPhone 5 email will not send however emails sent via Pages or yahoo are sending ok? Help

    iPhone 5 email will not send however emails sent via Pages or yahoo are sending ok? Help

    I inserted the code and i am still getting the same error. Here's what i'm getting.
    Developer Details:
    E-mail couldn't be sent. Error returned: authentication failure [SMTP: Invalid response code received from server (code: 535, response: 5.7.3 Authentication unsuccessful)]. (EMAIL_FAILED)
    tNG Execution Trace - VIEW
    * tNG_insert.executeTransaction
    o STARTER.Trigger_Default_Starter
    o tNG_insert.doTransaction
    + BEFORE.Trigger_Default_FormValidation
    + BEFORE.Trigger_Registration_CheckUniqueUsername
    + BEFORE.Trigger_Registration_CheckPassword
    + BEFORE.Trigger_Registration_PrepareActivation
    + tNG_insert.prepareSQL
    + tNG_insert.executeTransaction - execute sql
    + tNG_insert.postExecuteSql
    + AFTER.Trigger_Registration_AddDynamicFields
    Error--> + AFTER.Trigger_ActivationEmail*
    + ERROR.Trigger_Default_Insert_RollBack
    * tNG_insert.getRecordset
    * tNG_insert.getFakeRsArr
    * tNG_insert.getLocalRecordset
    * tNG_insert.getFakeRecordset
    * tNG_insert.getFakeRecordset
    Are there any other file I can alter for authentication? Or perhaps i need to insert the code sting I was given into another file?

Maybe you are looking for