Fax message to email attachments

Can any one help me how fax message will add as a attachment to email.can any one plz help.by sending some sample example.
Regards
Sivaram

Hi Sivaram,
Have you tried efax services? It's much more easier (for me) coz fax messages can be receive through email as attachments. But there's a catch, it will cost you.
Right now I'm using Smartfax. Its a bit cheaper and its really a good deal for people who has small business, like me.
Cheers,
Jen

Similar Messages

  • Email attachments download as ashx for Microsoft Outlook, instead of jpg, pdf, doc, etc. Tried to fix in Preferences Applications but still doesn't work.

    Using MacBook Pro running 10.5.8. Downloaded Firefox 8 on 11/9/11 and now Microsoft Outlook Web App 2010 downloads all email attachments as "attachment.ashx" instead of jpg, pdf, etc. This was not a problem with previous Firefox releases which I've been using for the past couple of years. Can open files if I edit the extension to the proper variety (ashx to jpg for example), but no longer initially automatically opens. Instead I first get a "can't open this file" message.  Attempted to fix in Firefox > Preferences > Applications by indicating the proper "Actions" for various "Content Types" but this had no effect. Chrome and Safari browsers still work properly. How can I fix this?

    Hi,
    I'm sorry you are having this problem, here is another post about the same problem, where the cause of the problem is described:
    https://support.mozilla.com/en-US/questions/894442
    A bug has been filed to track resolution of the issue here, because a true fix isn't yet available:
    https://bugzilla.mozilla.org/show_bug.cgi?id=703015
    I apologize for the inconvenience.
    Regards,
    Michelle

  • How to  delete email attachments from server

    Hi,
    I created an a CF template for sending e-mail which includes
    attachments. It has been tested on my dev box and is functioning
    fine as the attachment upload to a designated directory on the
    server. I would like the attachments to be purged once the e-mail
    has been forwarded to the recipent.
    In Macromedia's ColdFuision 7MX web application construction
    book page 913 "Interacting with Email" there is a CFC that will
    delete the file when the user ends their session.
    I am not sure how to write this to fit the code I am using.
    Here is the eMail form
    <!--- Mail_Form.cfm--->
    <html>
    <head>
    <title>Please enter your message</title>
    </head>
    <body>
    <form action="Send_Email.cfm" method="post"
    enctype="multipart/form-data">
    <table width="500" border="0" align="center">
    <tr>
    <td width = "500" colspan="2">Please enter your e-mail
    message:</td>
    </tr>
    <tr>
    <td width="250">To:</td>
    <td width="250"><input type="text" name="to_addr"
    value=""></td>
    </tr>
    <tr>
    <td>Subject:</td>
    <td><input type="text" name="subject"
    value=""></td>
    </tr>
    <tr>
    <td>Message:</td>
    <td><input textarea name="message" rows="5"
    cols="35"></textarea></td>
    </tr>
    <tr>
    <td width="250">Attachment #1:</td>
    <td width="250"><input type="file"
    name="attachment_1" value=""></td>
    </tr>
    <tr>
    <td width="250">Attachment #2:</td>
    <td width="250"><input type="file"
    name="attachment_2" value=""></td>
    </tr>
    <tr>
    <td width="250">Attachment #3:</td>
    <td width="250"><input type="file"
    name="attachment_3" value=""></td>
    </tr>
    <tr>
    <td width="250"> </td>
    <td width="250"><input type="submit"
    name="Send_Email" value="SendEmail"></td>
    </tr>
    </table>
    </form>
    Here is the form to send the attachment.
    <!--- Send_Email.cfm --->
    <!--- First make sure that the user uploaded attachments
    --->
    <cfif FORM.attachment_1 neq "">
    <!--- first actually upload the file --->
    <cffile action="upload"
    destination="D:\uploadsTEST\"
    filefield="attachment_1"
    nameconflict="makeunique">
    <!--- now create a temporary holder for the attachment
    later on --->
    <cfset attachment_local_file_1 =
    "d:\uploadsTEST\#file.serverfile#">
    </cfif>
    <!---Now repeat the process for the second and third
    attachment:--->
    <cfif FORM.attachment_2 neq "">
    <!--- first actually upload the file --->
    <cffile action="upload"
    destination="D:\uploadsTEST\"
    filefield="attachment_2"
    nameconflict="makeunique">
    <!--- now create a temporary holder for the attachment
    later on --->
    <cfset attachment_local_file_2 =
    "d\uploadsTEST\#file.serverfile#">
    </cfif>
    <cfif FORM.attachment_3 neq "">
    <!--- forst actually upload the file --->
    <cffile action="upload"
    destination="D:\uploadsTEST\"
    filefield="attachment_3"
    nameconflict="makeunique">
    <!--- now create a temporary holder for the attachment
    late on --->
    <cfset attachment_local_file_3 =
    "d:\uploadsTEST\#file.serverfile#">
    </cfif>
    <!---OK, you have now uploaded the file the server, now
    let's send
    out the email with the attachments:--->
    <cfmail FROM="[email protected]" to="#form.to_addr#"
    subject="#subject#"
    server="an001so-dby1c.pbi.global.pvt" port="25">
    #message#
    <cfsilent>
    <!--- <cfsilent> tag used to kill the white space
    in this area
    so your email is not cluttered with white space.--->
    <cfif FORM.attachment_1 neq "">
    <cfmailparam file="#attachment_local_file_1#">
    </cfif>
    <cfif FORM.attachment_2 neq "">
    <cfmailparam file="#attachment_local_file_2#">
    </cfif>
    <cfif FORM.attachment_3 neq "">
    <cfmailparam file="#attachment_local_file_3#">
    </cfif>
    </cfsilent>
    </cfmail>
    Here is the session application code to delete the file upon
    uploading
    <!---
    Filename: Application.cfc
    Executes for every page request
    --->
    <cfcomponent output="false">
    <!--- Name the application. --->
    <cfset this.name="attachmentPurge">
    <!--- Turn on session management. --->
    <cfset this.sessionManagement=true>
    <cfset this.clientMangment=true>
    <cffunction name="onSessionEnd" output="false"
    returnType="void">
    <!--- Look for attachments to delete --->
    <cfset var attachDir = expandPath("Attach")>
    <cfset var getFiles = "">
    <cfset var thisFile = "">
    <!--- Get a list of all files in the directory --->
    <cfdirectory directory="#attachDir#" name="getFiles">
    <!--- For each file in the directory --->
    <cfloop query="getFiles">
    <!--- If it's a file (rather than a directory) --->
    <cfif getFiles.type neq "Dir">
    <!--- Get full filename of this file --->
    <cfset thisFile =
    expandPath("Attach\#getFiles.Name#")>
    </cfif>
    </cfloop>
    </cffunction>
    </cfcomponent>
    The tutorial only explains how to delete the attachment when
    the recipient checks there mail
    in the POP server.
    Assuming that the sender is in a session would the code be
    written to delete the attached file from the directory on
    the server one the e-mail is sent.
    Can someone explain how to automatically delete email
    attachments from a designated directory or provide me with the code
    that would handle this after an email is sent with attachment.
    Thanks,
    Tony

    I don't know why your dos code didn't run. It could be
    addressing. My limited experience with cfdirectory/cffile/cfexecute
    is to type out the complete path at least once.
    Good books?
    Hard to say, depends on what else you are new at. If you are
    new to html, then htmlgoodies.com has good tutorials. So does
    webmonkey.com. If you have trouble with sql, I have heard good
    things about the SAMS book, Teach Yourself SQL in 10 Minutes by Ben
    Forta. I learned javascript by buying the book Teach Yourself
    Javascript in 24 Hours. The O'Reilly books are also good. I learned
    awk with one of those books.
    Glad you liked the fish pics. The camera is specified on most
    of the pages. If it says Reefmaster, I used an external strobe. If
    it says Sony I either used the camera flash only or natural light.
    By the way, that is not a Cold Fusion site. It's strictly html and
    javascript.

  • Mail 4.5 - how do I permanently delete email attachments?

    I'm using Mail 4.5 on OS X 10.6.8 - I'm using a late-2008 aluminium unibody MacBook with a 250GB hard drive and I only have 4Gb of available space left.  I'm trying to free up space on my hard disk and I downloaded Disk Inventory X to check what was taking up so much space - apart from my iPhoto library and Pictures folder which together account for about 125GB I see that the folder containing Mail messages is 42.8GB in size!
    I'm assuming that this is because I've received a lot of photos via email but I've added the ones I wanted to my iPhoto library so I assume I no longer need the images that were emailed to me.
    Can someone please tell me where I can find these email attachments so that I can delete them all at once - I'm hoping that I don't have to go through all my emails one by one to select and delete them individually?
    Cheers
    Tricia

    Hi again .... The Preferences/Accounts/Advanced tab is set to Keep all messages and their attachments for offline viewing.
    I agree that it seems strange to say that junk messages should never be deleted ... it was one of the settings in the article that I thought odd but assumed that 'there must be a reason'. 
    I had a look in my Macintosh HD/Tricia/Library/Mail folders - there would appear to be a great many ....
    Disk Inventory is telling me that my Library/Mail/Mailboxes/Recovered Messages folders are the following size -
    Mail 46.4 GB
    Mailboxes 44.8 GB
    Recovered Messages 42.1 GB
    When I look at the Recovered Messages data it shows 775 messages numbered from 260549 to 161324 with a suffix of .emlx - each one is 69.6 MB exactly!  Apart from these messages there are another 40 odd with sizes that range from 5.6MB down to 2KB.  I have the feeling that this might be where my problem arises but I have no idea what these Recovered Messages are.
    Any ideas?
    Cheers
    Tricia

  • My email attachments won't open after ios7.1 update on 4s! HELP!

    I recently updated my 4s to the new software, iOS7.1. Since then, my Word document email attachements are not opening. When I try and open attachments I just get a message saying "OfficeOpen XML word processing document" on a blank screen. All attachments were opening before the update... so I was wondering;
    Is my phone "too old" for this software? (Phone is only 16 months old)
    Are the attachments emailed to me, in the wrong format for me to open them?
    Or is there something I need to change in the settings so I can open email attachments????
    Please help!
    I rely on my phone to email on the run for my job so desperatly need to get it working again!
    I also have an iPad2 and have updated it to the new iOS7.1 software and email attachments and everything else is working fine.... just my phone isn't!
    Thank you all so much for your help.

    I have same problem when I upgraded to ios 7.1.  I have done the test that by sending a attachment both in .doc format and docx format but still cannot open the attachement and the message said "OfficeOpen XML word processing document", I have tested another iPhone in ISO 7 which don't have any issues to open.
    I don't why Apple still don't doing something to solve it.  We are well known that iPhone / iPad is not only for home use, we are use this everyday for work.  Please kindly give us solution.

  • Issue in storing email & attachments in to content repository server.

    Hi  All,
    We have done the following for storing email & attachments in to
    content repository server.
    Transaction - Activity done
    1) OAC0 - Defined the content repository folder RQ
    2) OACT - Created a category( ZSOFFHTTP1) and associated it to RQ
    3) SKPR08 - Associated ZSOFFHTTP1 to SAP OFFICE Class SOFFPHIO
    Also, updated the entry in the table SDOKPHCL against the record having
    Docuclass value as SOFFPHIO and change the category value to ZSOFFHTTP1.
    Now, we went to transaction SBWP and created a test message and sent
    an email to ( recepient address) and recip type as
    interent address.
    But when we cross checked the entry in SOOD table for this email sent
    today, we find that the value in the field is 'K' and not "A".
    We have done all the steps as per the SAP Note 530792 still the issue
    persists.
    As per the sap note 904711,SOOD-EXTCT Storage <space> directly in table
    SOC3
    K using the KPRO
    A in an archive
    Any help on this , would be highly appreciated.
    Thanks & regards,
    Divya
    Divya

    Thanks for the answer, but my question was whether it is possible to store documents to an external content server using transaction OAOR (Business Document Navigator). Right now it is only possible to store documents to the R3 database with OAOR.
    Regards
    Thomas Hørlyck

  • Post Moved Unable to download email attachments

    Post moved to Other BB Queries  http://community.bt.com/t5/Other-BB-Queries/Unable​-to-download-email-attachments/td-p/573621
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

    Zooropa wrote:
    Hi,
    I have just got myself a new PC with Windows 7 (64bits). Using IE 8 (32 bit version), I am unable to download emails attachments from my normal Yahoo account ([email protected]). I have read somewhere that this could be due to the fact that Yahoo uses Norton as antivirus scan for email attachments, and that this could clash with BT NetProtectPlus (McAfee under the bonnet). Is there an option I need to switch off (and if so which one / how) in BT NetProtectPlus in order for me to be able to download attachments via Yahoo mail ?
    Please note that this used to work on my previous PC (Windowx XP).
    Thanks for your help. This is getting really frustrating !
    Hi. Welcome to the forums.
    To be honest, there would not really be a clash between the products you've mentioned, because the online system using Norton is a server system and actioned before any download. There is possibly an option in BTNetprotect for "email scanning" or similar. This option can be turned off in the general case, since disk writes are covered anyway,
    Have you tried another browser (e.g. Firefox, Opera or Safari) to see if the same conditions exist ?
    Is there any particular error message or delay you are seeing ?
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • Viewing Multi Page tiff  files received as email attachments on the iPhone

    I have spent hours trying to find a solution or a work-around to the problem of viewing multi page tiff ( .tif) email attachments on my iPhone 3G running 3.0. I have only ever been able to view the first page of these files.
    Finally I decided to come up with my own solution. I have recently launched the website www.econvertimage.com. Anyone can now freely email tiff files to the site from their phone. These files are converted to pdf and then returned to the sender for viewing on their phone.
    You can set up an auto forward for attachments coming from specific senders if you like. This way you will often receive the converted file at the same time as the original email. Visit the site for further details.
    I hope this post may save others the frustration I've endured over the last few weeks looking for a solution.
    I'm interested in future improvements people are keen to see for the site. I'll keep developing the functionality if there's a need. I look forward to receiving comments and feedback.
    Thanks

    Sounds perfect - is it operational? Sent a test message this morning, never received the PDF.

  • Determine the fax number or EMAIL address for pur docs

    Hi,
    I am trying to send pur doc via fax or EMAIL.
    I have created specific  message types for that purpose.
    The fax is created and sent to the default fax number / EMAIL address.
    I want the message to be sent to the same vendor but to other fax number or EMAIL address.
    I do not want to create a spereate partner for that purpose. I want to add fax number or EMAIL number to the address detail of the vendor and I want to mark it as the fax number for the pur docs.
    In the UE/BADI I want to be able to determine the fax number / EMAIL address.
    Does any one know any BADI/UE enabeling me doing so?
    Best regards
    Shlomo Assouline

    Dear Ramesh,
    This is a known issue. What I am looking for is the place in which I can decide which one of the EMAIL/FAX that exists in the vendor master data to use.
    As you probably know A vendor can have more than one EMAIL/FAX but only one of them is signed as the default one. The EMAIL/FAX used as standard is the standard one.
    Best regards
    Shlomo Assouline

  • Unable to send PDFs as email attachments

    I have become unable to send PDFs as email attachments when using Firefox.
    Depending on the PDF, I either get the message “There was an error opening this document. The file is damaged and could not be repaired.” or it opens as a blank document. This occus when opening the file with both Adobe Reader and Acrobat Pro. The problem seems to be isolated to PDFs. (I am able to send Word files. If a PDF is zipped before attaching, it can be opened without problem.) This occurs on both an institutional email account and personal (Yahoo) email account. This problem is isolated to Firefox (does not happen in Chrome).
    I have reset Firefox to default settings, as well as reinstalling.
    Thank you.

    Update Adobe® Acrobat® Plug-in for Web Browsers, Version 10.1.13 to version 11.
    Also please update all of your plugins and try again.
    Does this happen when you open the pdf in pdf.js, it is possible to change the default viewer by:
    * [[How to disable the built-in PDF viewer and use another viewer]]

  • Why do I sometimes receive email attachments in the body of the email and how can I download and print them from there?

    Why do I sometimes receive email attachments in the body of the email and how can I download and print from there?

    To save attachments, a couple of options include: (1) control-click on attachment, select "Save Attachment...", (2)  Click on "Show Details" in the upper right corner of the message, which then gives you some attachment functions including "Save".
    charlie

  • BESX SP3 MR6 - Email attachments are now ALWAYS Auto-download - not good with duplicate attachment names

    Does anybody else see where email attachments are now always auto-download on all devices. The policy option was phased out in 5.0 but the default at that time was no (to auto-download). Now they all auto-download.
    1. PDF will not display because they must stay as attachment to render on Blackberry device. Says
    “This attachment type cannot be viewed on your device”
    2. Phone messages attached as voicemail.wav - first one works, but since no longer the "Preview" option second says "Fielname exists - Rename?" Some devcies you can save and go back - others you can't.

    Surely there's an expert on this forum who can help?

  • Email attachments not exporting from outlook 2013 with Acrobat XI standard

    I can't get my email attachments in Outlook 2013 to export along with the message.   I've got the option checked in the settings to include attachments, and I don't get an error message when the PDF is created.  But it includes the message only, regardless of whether it's set to output as a portfolio.  I'm using the latest version (11.0.10) of Acrobat XI.  Does anyone have a suggestion on what the problem might be and how I can fix it?  Thanks very much.

    Hey mikem750,
    Once you convert the email to PDF, you have to click on Attachments under the Navigation pane. You can then save the attached file and then convert it to PDF format.
    Choosing 'include attachments' option under conversion settings will simply include attachments (original format) along with the converted email message.
    Hope this information helps.
    Regards,
    Anubha

  • How do I save to outgoing email attachments folder in 8 as I did in 5?

    I just upgraded from PSE 5 to PSE 8 and I use Incredimail, not Outlook.  In PSE 5 there was an option to save outgoing email attachments to a folder for subsequent manual attachment to my email message.  The online help seems to suggest this as the solution as well.  However, I cannot seem to figure out how to set this up in PSE 8.  In prefrences, the only options are Outlook, Outlook Express and Adobe Email Service.  When I go through the routine of sending an email through Outlook (which is installed on my computer but which my wife does not use), the attachment can be found in a very deeply rooted Temp subdirectory.  In PSE 5 I could cause it to be saved in a subdirectory under My Pictures/Adobe directory sorted by date of creation of email attachment.  Can anyone please advise how to accomplish this in PSE 8?  Your assistance is greatly appreciated.  Thanks.

    That's an application by application feature/standard that they need to adhere to. I have no problem with Photoshop doing what you describe. Check your Photoshop Preferences. Does this happen in every application?

  • Why are my email attachments showing as being attached but the recipient does not get an attachment?

    I currently use the Mail program on my MacBook Pro and am having issues with email attachments. I have read through a few forums and I seem to be doing everything correctly but I am still having problems. I have 3 different email accounts that I have set up through Mail and all 3 are having problems. The steps I take when attaching any document is to compose to a new email, click the paperclip icon or go through the File drop down menu and select Attach Files. With either option, I can see my document inside of my message but when I send the email the recipient only receives the text portion of th email, not any attachment. When I go to my Sent mailbox and find the email I sent, I can see the document within the message but there is not a paperclip icon next to the recipients name indicating that there was an attachment sent.
    I have made sure that 'Always send windows-friendly attachments' is selected, and I have tried sending them with 'Always attach at end of message' selected and with it unselected but there has been no difference. I have only noticed this within the last 2 months. Anyone have any advice?

    The issue with not seeing the paper clip in your Sent mailbox seems to be totally removed from anything related to recipients, and is something to perhaps yet be addresses in a future update.
    To the issue with recipients, I would guess the recipient is using Outlook or Outlook Express, and the message is being sent in Rich Text (a form of HTML) and the recipient either cannot open the attachment, or they have an over zealous anti-virus filter that is removing the attachment out of fear caused by the presence of HTML.
    More info about the recipient's platform, please.
    Ernie

Maybe you are looking for

  • In BSP-HTMLB what is the code for auto refresh.?

    Hi friends, In BSP-HTMLB what is the code for auto refresh.? Means i gave the input every 2 minutes once my output should get refresh. So what is the code in bsp-htmpb? Moosa

  • Crazy behavior when opening documents

    Hi together, if I click on a link to a document of type PDF, it will open normally. If the document is of type Microsoft Word a short moment I will see a new browser window which immediately closes. If I follow the same link to the document and press

  • Fonts are not listed

    When I moved from XP to Vista, it seems I've lost many fonts. I have installing them directly into the Common folder with no success. Any other ideas? I have less than 500 fonts.

  • Regarding too upload videos

    I've created a playlist on my computer to put videos in, but the ipod doesn't show the playlist to update it, basically, how do I upload music video playlist into the ipod ????

  • Best practice to upgrade NAC Failover deployment

    Hi, I have a NAC Failover deployment with 5 pairs of CAS and 1 pair of CAM running version 4.1.3 and i want to upgrate to 4.7.2 My deployment is Inband Virtual Gateway. I have 5 floors and one pair of CAS in each one, so, my question is: I'm reading