Solution to email uploaded attachments

Is there any solution available to email a forms results plus
any
attachments that were uploaded to the expected recipient?
I have a form that currently dumps the data into sql db.. now
they are are
asking to make some changes by adding 3 fields to allow
images / docs to be
uploaded.
The form currently dumps the data and emails a copy of that
data to the
proper contact for that issue. Because they are wanting to
allow the upload
of the files.. is there some ext or code available i can
adapt to my code to
insert the data and files into the database.. and then email
the submission
along with the uploaded files to the contact person?

The script is a 3rd party CDONT script.. yes i can modify it
to fit my
needs.. all this is being done on our Intranet.. so i have
full access to
the server. The Pure ASP upload has worked up until version
3.. i have
nothing but trouble with the new version.. so getting the
additional files
online is not an issue..
My issue is.. once they have been uploaded... How can i send
just the files
that were added to individual that requires them?
Example:
Form consists of 4 fields plus the 3 upload fields
I have some javascript set to enable the 3 fields if they
answer yes to
having additonal images /docs ( this is a required question,
if they select
no then they stay disabled.)
The problem im having is how to make sure ONLY the
images/docs associated
with this submission are the ones sent or linked to...
"bregent" <[email protected]> wrote in
message
news:eq96ba$nmc$[email protected]..
> >Using DWMX, SQL and ASP
>
> Do you already have the file upload piece working? If
not, are you
> building this yourself? Does your host provide an asp
upload component?

Similar Messages

  • HT1694 How do I upload attachments to email?

    I'm trying to attach a document from PDF lite to an email and can nontrivial work out to upload attachments on hotmail mobile or via mail. Help!

    If you are using PDF Reader Lite app then there are instructions here for how to select a PDF in it and email it via the Mail app : emailing PDFs.

  • New version of yahoo beta mail will not upload attachments with foxfire browser

    I have switched to yahoo email's new beta version. I can not upload attachments while using foxfire browser on my PC but can using windows on my laptop? Yahoo live help could not find solution and felt it was a problem with the browser- foxfire? I just need to find solution to problem. Have any suggestions?

    I misunderstood the "of 25MB" part of the image. Maybe that's Yahoo's maximum allowance.
    The typical next step is to try to rule out a conflicting add-on. A standard diagnostic to bypass interference by extensions (and some custom settings) is to try Firefox's Safe Mode. More info on Safe Mode: [[Troubleshoot Firefox issues using Safe Mode]].
    To start in Safe Mode you can use:
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode."
    If uploads works correctly, this points to one of your extensions or custom settings as the likely culprit.
    If there's no difference, you could also test for a plugin conflict by disabling those here:
    orange Firefox button (or Tools menu) > Add-ons > Plugins category
    You probably have to reload the page or start a new message to test that change.
    Any difference?

  • Is it possible to send emails with attachments fro...

    Hi there,
    I was wondering whether it's possible to send emails with attachments from a Nokia 5230, it's just I would like to be able to send emails with attachments without using a computer especially when I'm out on my journeys.
    Many thanks,
    Tim Auluck
    Solved!
    Go to Solution.

    Hi RocknRollTim,
    Thanks for your reply. Have you already tried sending these files? Though you're not able to create all these files on the phone itself, you should be able to send them in an attachment when they're on your memory card.
    Uploading a .jpg, .tiff, .gif, .doc, .docx .htm, .html .key, .numbers, .pages, .pdf, .ppt, .pptx, .txt, .rtf, .vcf, .xls or .xlsx file shouldn't be a problem when uploading. Just click on 'Other' when adding an attachment, then on 'Other files' and there you will be able to select any file that you have saved on your memory card.   
    Whether you can actually send the email depends on the strength of your internet connection (as I mentioned in my previous post). Also keep in mind that the phone itself as well as the network work with a maximum size file that you can send over 3G (more information about this can be found here), and can therfore also limit you in sending large files.
    In any case, let me know how you get on so that we can assist further where necessary.
    Iris9290 
    If my post has helped you in any way, please accept it as a solution or click on the white star, so that other users will be able to benefit from it too.

  • Can not view (some) emails with attachments

    There has already been some discussion about individuals getting the "This message has not been downloaded from the server" error.
    http://discussions.apple.com/message.jspa?messageID=4983643
    Has anyone found a solution to this problem? I am using GMail and am having problems reading (some) emails with attachments. I can read the first several lines through the preview view, but can not open (some) emails without getting the "This message has not been downloaded from the server" error.
    The problem appears to be completely random. The problem occurs sometimes after I open the email on my computer, and other times it occurs before I open the email on my computer. And sometimes opening the email on my computer does not cause any problem opening the email on my phone.
    I have seen this problem on two different phones now and have re-created the email accounts on both phone several times. But the problems keeps (eventually) appearing--for some, but not all emails.
     PowerBook G4, Macintosh 512K     iPod nano (2nd Gen 8GB), iPhone (8GB)

    So, I think things are actually sending/downloading and it's just taking time and the iphone is defaulting to the error message.
    I don't think that's the case. I have several week-old messages on my iPhone (each under 300k) that still say "The message has not been downloaded from the server."
    I've been connected to wifi for over an hour now, so that's plenty of time to downloaded these few small emails. I can read the "preview" of the message from the Inbox screen, but when I click on the message itself, I get the error.
    And, those messages with the attachments that I was able to open this morning? I can no longer open them now. Very, very frustrating.

  • Question on the upload attachments process in a request form

    hi,
    I have a question on the upload attachments process in a request form. I have 2 pages, one is a request form and the other is an attahment page
    The request form let users fill the mandatory fields (e.g. name, email, address...) And in the form, there is a link (URL without submit) to the attachment page.
    In the attachment page, users can upload the supporting file for their rquest. The file will be uploaded to APEX_APPLICATION_FILES view and then it will be copied it to a customized table (table A) and remove from the view.
    When the users finish uploading files (i.e. the files are stored in table A), users need to press a "Done" button back to the request form to submit the form.
    My question is:
    As the request form is not yet submitted while the attached files are stored in table A, there is no request_id (request from table primary key generated in an Insert trigger after submission) is generated to tag with the files in table A. Is there any standard practice to do this?
    What I am doing now is to generate a hidden value in sequence when user goes to the attachment page. The hidden value is stored in table A togehter with the files when uploading. When user goes back to the request form, the hidden value is passed back as session cache. When the request form is submitted, I make an update statement by using the hidden vaule in the Insert trigger to tag the request_id to the attached files in table A.
    Is my way appropriate?
    Thanks for advice.
    cheers,
    Pong

    Pong,
    Yes, this would work just fine. You may want to consider enabling session state protection so that your process is not succeptable to URL tampering, which would cause a user to change the value of the REQUEST_ID in the URL and potentially associate other attahments with their request.
    Thanks,
    Scott

  • Emails as attachments

    Hi all,
    we are able to send the email templates as attachments with the mails for converted leads from OCRMOD thru java via webservices. We need to attach the same to the attachments related list+ within the Account Component. If anybody has already done on this, please share with me, it would be great help.
    Thanks,
    Ratan

    Hello Ratan,
    You can use the Attachments child relationship within the Account WSDL to upload attachments to an Account. Look for the <ListOfAttachment> tag in the WSDL.
    Thanks,
    Sean

  • Can i send images by email as attachments rather than embedded in email

    can i send images by email as attachments rather than embedded in email

    How the email message looks in Mail is fairly irrelevant to how it will look to the recipient.  An image attached to an email message is an attachment regardless of how the client displays it.  Some will display it inline, others as an icon in a list of attached files.  Regardless, it is an attachment and should be capable of being opened, saved to another location, etc.
    Unfortunately, some Windows email clients (*cough* Outlook *cough*) are absolutely crippled when it comes to email standards, and make it difficult for recipients to view or save some attached images.  You can better ensure success with Outlook by using Windows-friendly attachments and only sending plain text email, rather than HTML email.  However, Outlook is still Outlook, and it does not play well with others.
    If you must communicate with people who use Outlook  try uploading your photos to an album on Picasa, Flikr, Shutterfly, etc, and then send people a link instead.  Or convince them to use a real email client, like Thunderbird.

  • Difficulty transferring email photo attachments

    Apple mail App unable to send email photo attachments direct to iphoto since  upgrade to mountain lion.Now I need to drag photos into i photo.  Has anyone have had this problem and has found a solution?
    MacBook Pro, iOS 6

    Thanks but that is what I have always done or used the save to iphoto. Neither work anymore.

  • Upload/Attachments Problem

    Hi I was wondering if anyone could help.
    I have been having trouble uploading attachments to my emails and even loading photos on Facebook.
    I keep getting an error that says something like...." did not receive the whole file, therefore the file could not be attached"
    has anyone else had this problem or does anyone know how to fix it.
    Thanks

    Try my Mac Performance Guide.
    If that doesn't help, post back here with the results of all the things you tried to do as part of that guide.

  • Problem When Forwarding Email Attachments / Email With Attachments

    I posted a response in a related thread that describes my problem, but have found no solution so I thought I should create a new thread and solicit direct advice for this issue.
    I sync 2 (sometimes 3) Yahoo Email accounts to my iPhone 4. Due to firewall issues at work accessing 'personal email', I often email myself files as attachments, then forward them to others using my iPhone. Having recently upgraded from iPhone 3G to 4, now when I forward an email with attachments, the attachments get zapped to 0B and effectively do not forward. It may show an icon or have the file, but it's an empty file. I always select "Include Attachments" when it asks, but the functionality is not working the way it is supposed to.
    I've tried forwarding .xls .doc and .zip files so far. Even a small 180kB file won't forward.
    The only exception seems to be if I click the attachment, let it fully download, then forward the email. That works for 'standard' types of files, but I didnt have to do this step in the previous iOS, so I am wondering - Is that normal now?
    What about other types of files besides office and adobe? If the iPhone doesn't have support for me to view the file on my phone, I can't "download" it before forwarding. Example is a zip file. It shows as a "?" in my email, so I cant download it, so when I forward it it kills the attachment.
    Regardless what the phone supports to view, if I just want to forward an email from the server along to someone else, it should have the freakin' attachments! This doesn't seem to be the case for all situations though.
    Would seriously appreciate a confirmation others have this issue (go ahead, try to send yourself a zip file and then just forward it back to your PC) and any solutions that might explain how to correct this problem. Maybe there's a server setting or another way of setting up the email accounts that would fix it.
    Thanks all

    Being able to forward as an attachment would be such a useful feature. Forward as in-line text works but this is no good if you want to retain the original email headers or smime content.
    One prime example is the use of SpamCop.net where you need to be able to send the original mail (including headers) for SPAM processing. Forward as attachment is the easiest way to do this.
    Come on Apple, please help us, without the "Forward as Attachment" it make it difficult for us to quickly report SPAM or forward documents. Can it really be that hard to implement?
    Vote... Vote...

  • Email with attachments shown on blackberry but not on computer, while without attachment seen at both places (same sender)

    One sender sent me 3 emails, two with attachments and one without attachment. I could see all the emails on my Blackberry but I didn't see emails with attachments on my computer. thanks for the help.

    I would think this is an issue with your email provider, not the BlackBerry. What email service do you use?
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • SOA Suite 11g - Email with attachments (Attachment from SOAP attachment)

    Hello,
    Can any one please help as to how I can do the following in Oracle SOA 11g:
    Using a BPEL process how can I send an Email with attachments where the attachment itself is coming from a SOAP attachment.
    The back ground is that we have portal sites from where the users can upload a document and then from their a SOA service is invoked and the attachment would be passed as (SOAP attachments) and then emails have to be send to users containing this uploaded document as the attachment.
    Thanks.
    feel free to email me [email protected]

    Yes, I need all supported standards and their version of SOA Suite 11g because my customer wants to upgrade from 10g to 11g, especially all supported standards and version number of OBPM 11g and OBPM 10g.
    A people has pasted all support standards and version number of OBPM 10g. I get a standard list of OSB.
    OBPM 11g supports:
    BPEL
    xml 1.0
    Servlet 2.3\JSP1.2 (J2EE 1.2),
    Servlet 2.4\JSP2.0(J2EE 1.4),
    Servlet 2.5\JSP2.1(Java EE 1.5)
    UDDI
    SOAP
    WSDL
    WS-BPEL for People
    XML Schema
    XPDL
    SOAP
    XQuery
    XLIFF
    XSL map
    XSLT
    UML
    Ant
    EJB 2.1, JPA/EJB 3.0
    JAAS
    Spring
    JAXB 1.0, JAXB 2.0
    XHTML
    HTML
    JSP
    JSF
    JSR-168
    XSQL
    WS-Policy
    But I cannot find the document about version number of the above standards

  • Sending emails with attachments through outlook 2003

    Hello,
    I have recently switch from cablevison to Fios. With Cablevison, I never had a problem with email. However, now I am having problems sending emails with attachments using outlook 2003. I have called Verizon and we troubleshooted the problem and they feel this is a Microsoft problem.
    I can send email's without attachments through outlook and verizon.net, but I can't send emails with attachments through outlook, I can send them though verizon.net.  All my settings are correct for sending and receiving email.
    I called Microsoft and they say it a Verizon problem...
    HELP, does anyone have a solution?????
    Thanks
    Len628

    Which antivirus software do you run on your computer? Are there any errors posting?  Have you shut off any email firewalls temporarily to attempt to isolate your issue?  Do you have outlook 2003 on more than 1 pc in your home?  Have your tried to attach a small text file and send it to see if that goes thru successfully?
    Joe D
    Verizon Telecom
    Fiber Solution Center
    Notice: Content posted by Verizon employees is meant to be informational and does not supercede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or Plan.Follow us on Twitter™!

  • What is the best way to open emails and attachments without using wifi?

    For I-phone and I-pad, what is the best way to open emails and attachments without using wifi?  I turned off wifi in my settings but my boss thinks there may be another way and a better way to use something else instead of wifi.  Any help would be appreciated!  Thank you!

    Thanks!  That is a very good question you post.  My boss asked me that and I am assuming that he is having issues with using wifi wherever he is at.  My boss is the kind of person that when he asks something you look into it and ask him no questions...he's the only one asking questions!  But thank you for your response I will tell him the information you told me and hopefully that will help!

Maybe you are looking for

  • Need to display COlumn headers dynamically in ALG Grid

    Hello, I need to display column headers dynamically in alv grid Display with its corresponding value. Column headers should be picked from a field in Final Internal table and its corresponding field will also need to pick from the same table. T_final

  • Query with EXISTS & ORDER BY is slow on 10g

    On Oracle 10g, the below query is taking 100 secs to return 500 records. It returns in 1 sec on Oracle 8.1.6. If I remove the ORDER BY clause it executes in 1 second on Oracle 10g also. I need to keep the ORDER BY and have to tune it for Oracle 10g.

  • IPhone - Safari parent window focus problem

    Hi All, I am having a peculiar problem with a website i am developing. The problem *only* happens on the iPhone(safari). My setup is as follows. 1) I have a CLIENT page - shows an initial page, and has a login button. 2) User clicks on the LOGIN butt

  • DML in PL/SQL Function

    Hi, I work with a middleware called Ulis. And I must access the Oracle DB through this midlleware. Ulis only accept select command. My problem is that I was to insert data in a table concerning the use of the function. How can I do ? Because when I t

  • Sun Application Server Platform Edition 8.2 Memory Leak!!

    Hi there, I've been testing a benchmark tool and been used App Server with Adventure Builder deployed as my SUT. What happens is that I've found that the server crashes within few minutes with a memory leak problem. I was testing a version that has a