Call for email address from database?

Hi
I'm pretty new to asp pages.
I've got hundreds of customer contact forms that I would like
to create as
.asp pages, so that when the form is sent it calls for the
email addresses
to send it to from a database.
This is an attempt to hide the customers email address from
showing on the
website.
Can anyone please point me in the direction of a newbie
tutorial?
Many thanks
Craig.

fbcojman wrote:
> I am storing a field for email address in my MySQL
database. I'd like, when
> using PHP to pull from my database, when the email field
is returned, for it to
> be a link to that email address.
<a href="mailto:<?php echo $row_recordsetName['email'];
?>"><?php echo
$row_recordsetName['email']; ?></a>
David Powers, Adobe Community Expert
Author, "The Essential Guide to Dreamweaver CS3" (friends of
ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/

Similar Messages

  • Accessing a user email address from the database

    Hi,
    I really need help with the following.
    I am adding functionality where users can set reminders that will then be sent to them by email when the reminder is due. I am going to utilise dbms_job to do this. My problem is that I am using apex authentication and users for the rest of the application and I need to retrieve the email address from apex. I cannot use wwv_flow_users as the email will be sent from a job in the database therefore there will be no current logged in user / workspace / session.
    There must be some way of accessing an internal apex table / view or something that can tell me what the email addresses of my users are without being signed into an apex session.
    Please help, this is quite urgent.
    Thank you in advance.
    Lee

    Hi,
    Glad to see that you've found.
    However would be very interesting to know how to retrieve user list without being in an Apex workspace.
    i would do as follows:
    When the first user of the day log into apex you could update a static table containig the email (taken select into from www_flow_user once a day).
    Then via a trigger you could start your batch proc, that needs updated email.
    Is not clean at all, but probably if your firm isn't too big this approach could work.
    By the way if you find how to retrieve the email not using www_flow_user, would be very nice to know.
    Message was edited by:
    Marcello Nocito

  • Script for gathering email address from my computer

    Hi, I'm a noob around here, but a mac user for many years.
    I am wondering if anyone knows of a way to gather email address from my computer. I havent kept my address book updated by saving people's email addresses, but I know they are there in old messages I've sent and recieved.
    If anyone has or knows how to easily make an applescript that will complie all of the addresses on my comp into one neat text file, please let me know. I just got a program called direct mail, and i want to set up different mailing lists to get in contact with my people about upcoming events and whatnot.
    Thank you so much for your time.
    Stillie War

    I will try that.. but I still want to actually try to gather EVERY email address in my computer, even, lets say, addresses that were in the CC of things sent to me. I'm not a hardcore spammer or anything, but i have a few events a year that I want to let all my people know about, so I think I'm looking for some kind of script to cull ALL of the addresses in my computer. Anyone know?

  • Hi, both my husband and I have iphones synced to my apple id. It seems that we can't facetime due to this as it's like my email address is calling my email address! Is there anyway to fix this or will we need to create a new id for my husband's phone?

    Hi, both my husband and I have iphones synced to my apple id. It seems that we can't facetime due to this as it's like my email address is calling my email address! Is there anyway to fix this or will we need to create a new id for my husband's phone?

    settings - facetime - remove the apple id, on your husband phone.
    He should create his own id for imessage and facetime.

  • I decided to backup for the first time with icloud yesterday, and lost all my phone contacts! I am panicking, because the backup says 0, and I checked the internet account on my pc, and it's only showing email addresses from my hotmail account. What to do

    I decided to backup for the first time with icloud yesterday, and lost all my  phone contacts! I am panicking because the backup is saying 0 and I checked the internet account on my pc,and it's only showing email addresses from my hotmail account. What to do? How to recover them!

    Have they also gone from iCloud.com when you log in from a computer.

  • Have searched Forums for quite some time now. Cannot find a correct answer to: how do I prevent my old email address from appearing as the "from:" address

    Have searched Forums for quite some time now. Cannot find a correct answer to: how do I prevent my old email address from appearing as the "from:" address when I use a "send this" link on a webpage/news article. The email window opens and automatically inserts my old Hotmail address instead of the Yahoo address I've used for a long time. (The drop-down won't let me change it or delete it.) Thanks.

    Do you get a drop down list with suggestions if you clear that "from" field and click elsewhere on that page to move the focus off that field and then double-click again in that field or start typing the first letters of that unwanted email address?
    Use these steps to remove saved (form) data from a drop down list:
    #Click the (empty) input field on the web page to open the drop down list
    #Highlight an entry in the drop down list
    #Press the Delete key (on Mac: Shift+Delete) to remove it.
    *Form History Control: https://addons.mozilla.org/firefox/addon/form-history-control/
    *Tahoe Data Manager: https://addons.mozilla.org/firefox/addon/data-manager/

  • How to extract email address from Outlook friendly name cache

    Hi guys,
    A while ago, somebody wrote a little VBA utility to help us to log CRM events. Whenever a user sends an email to a customer, it logs the fact in our CRM database. This is the programmatic process:
    1. Grab the email address from ActiveInspector.CurrentItem.To
    2. If it's a valid email address, all well and good. Proceed to Step 8.
    3. If not a valid email address (it must be a friendly name, perhaps located in Exchange), look for the address in:
    ActiveInspector.CurrentItem.Recipients.Item(1).AddressEntry.GetExchangeUser.PrimarySmtpAddress
    4. If it's a valid email address, all well and good. Proceed to Step 8.
    5. If not a valid email address (it must be in the user's Contact list), look for the address in:
    ActiveInspector.CurrentItem.Recipients.Item(1).AddressEntry.GetContact.Email1Address
    6. If it's a valid email address, all well and good. Proceed to Step 8.
    7. If not a valid email address, then crash!!!         <<------------------------------------------------- Here's where I'm stuck!
    8. Get the CustomerID from the CRM, based on email address.
    9. Do a bunch of other stuff (for example, send the email, and log the event in the CRM).
    I'm a former Access MVP, and am highly experienced with VBA, but my forte is clearly not Outlook. What I'd like to do is find the email address by looking in the local cache, and make sure I get the actual email address rather than the friendly name.
    I'm not sure if 'local cache' is the right word; I know Outlook stores frequently used email address in some sort of cache, even if the user has not explicitly stored it as a Contact. I just don't know how to find it. Can anyone point me in the right
    direction, maybe with a method name?
    Also, while mucking about with it, I found the following. Would it be useful in this scenario?
    ActiveInspector.CurrentItem.Recipients.Item(1).AddressEntry.GetExchangeDistributionList
    Many thanks,
    Graham R Seach
    Regards, Graham R Seach Sydney, Australia

    Hi Graham,
    This might help you to figure things out a bit.
    The contact cache you are looking for is called the nickname cache, also known as the "autocomplete stream."
    The nickname files (.nk2) used by older versions of Outlook (2007 and below).
    Outlook 2010 and 2013 does not use the NK2 file; it stores the autocomplete cache in the mailbox or data file and caches the addresses in an autocomplete stream at C:\Users\username\AppData\Local\Microsoft\Outlook\RoamCache. The cache is stored in a file
    named Stream_Autocomplete_0_[long GUID].dat.
    For applications that interact with Outlook 2010 or Outlook 2013, the autocomplete stream is stored as a MAPI property and can be modified using the MAPI or the
    PropertyAccessor object of the message. The PropertyAccessor object is exposed in the Outlook 2010 or Outlook 2013 object models.
    Outlook 2010 or Outlook 2013 reads the autocomplete stream from a message in the Associated Contents table of the Inbox of the mail account’s delivery store. This hidden message has a message class and subject of IPM.Configuration.Autocomplete. The autocomplete
    stream is stored on this message in the PR_ROAMING_BINARYSTREAM property (PidTagRoamingBinary Canonical Property).
    References:
    How to import .nk2 files into Outlook 2013
    Some Application which can read the Nickname Cache
    Interacting with the Autocomplete Stream
    Autocomplete Stream
    https://msdn.microsoft.com/en-us/library/office/ff625291.aspx
    Regards,
    Satyajit
    Please “Vote As Helpful”
    if you find my contribution useful or “Mark As Answer” if it does answer your question. That will encourage me - and others - to take time out to help you.

  • How can I export email addresses from apple mail?

    How can I export email addresses from Apple Mail?
    Just to be CRISTAL CLEAR please don't reply with export instructions from the address book.....not interested in this.
    I have customers that fill-out a request form online, then the data is sent to our database on our server, and another copy is sent to my email account. The server database got corrupted and is now lost. The only data left are in my email app called APPLE MAIL. I have created Filtered Folders so the data is just in one Folder, not mixed with all other emails. Is there a way to export the email names & addresses from APPLE  MAIL to a CVS file or Excel file?
    Again this is not a question related to Apple Address Book. This is ONLY for Apple MAIL exporting!
    Thanks

    There is a collection of AppleScripts called Mail Scripts you can download at this link.
    http://homepage.mac.com/aamann/Mail_Scripts.html
    The script to use from the collection of scripts is Add Addresses (Mail) which adds addresses found in the selected messages (in the header fields "From", "To", "Cc", and "Bcc") to the Address Book. This is much more flexible than the "Add Sender to Address Book" available in Mail and provides a convenient way for creating mailing lists.

  • Transferring email addresses from one account to another

    I'm not sure if this is a good place to post this but after spending a good bit of time on the phone with FiOS customer service and technical support I just feel like venting my frustrations and hope that maybe someone could give me a valid explanation of why this cannot be done.
    To give a brief (hopefully) summary of what's going on...
    My wife and I are currently in the process of moving from Florida to Maryland because of the current job market and economy situation.  As always...the moving process has been a "blast".  For at least a few months we will be "between" homes and will be staying with friends.  Because of this we had to cancel our FiOS service (which I did last week and it will be shutting off sometime today).  Since we've been very please with the actual service FiOS provides we have (or maybe I should say "had") every intention of signing back up with Verizon once we're in a new home in the Maryland area.
    So here's where the trouble comes into play...I contacted Verizon to see if it would be possible to somehow transfer our existing Verizon.net email addresses from our account to my friend's account (the person I'm staying with).  You would've thought I was asking for a year's worth fo free service.  Initially I was told by customer service that this can't be done.  They explained that an email address is like a phone number and two separate accounts cannot have the same email address.  Thanks for the newsflash!  I explained again that what I wanted to do was move my email addresses so they would now be associated with my friends account.  This didn't seem like such a horrible request considering my friend pays for FiOS service and with that gets 9 available email addresses....and was only using 2 of them.  She ultimately just told me it was something that couldn't be done.  But she did inform me of the "Verizon Your Domain" service that would allow current FiOS subscribers to associate their Verizon.net email account with a new domain name that you create.  It would cost $20 per year and would allow you to keep your Verizon.net email if you canceled FiOS service.  This sounded like an ok option.
    But still -- I was curious why I couldn't transfer email addresses.  So I then contacted technical support.  This time it was explained to me that an email address was like a social security #.  It couldn't just be given to another person.  Great analogies in use at Verizon....I give them that.  I told the guy I was a fellow "techie" and asked him for a more detailed explanation.  That's when it got good.  That's what killed me.  He spent all this time talking about ACL's and routing and how email addresses couldn't be moved because "you're talking about 2 million addresses".  Long and short he was trying to say the Verizon email system was just too complex.  Finally I told him that it had to be something that could be done....and his exact words were "well sure it can be done...but we're not going to do it if you're not paying for a service".  Wow!  Great response!  I've been a paying customer of FiOS for about two years.  I've had some form of service with Verizon for about 15 years (from phone service to mobile service with V-Wireless).  I fully understand that I'm no longer paying for FiOS service.  But my friend is.  And he has 7 email accounts he's not using.  So why couldn't they be moved?  Because the system is too complex?  Give me a break.  Like this guy finally admitted...it boils down to money.
    Finally I gave up.  I told my wife that we'd just have to deal with switching to a new email address.  Life will move on.  She wanted to try the "Verizon Your Domain" option though.  She started doing the process online...had some questions....and decided to call customer service.  She got transferred around to three different people...the last of which told her "you need to call a different department" and then CLICK. 
    Great, great job Verizon.  All I ask is if someone could give me some sort of response that makes sense.  If you just don't want to offer the transfer option then tell me. 
    I expect to be in a new home within a month or two.  And suddenly Comcast is looking very good.

    spacedebris wrote:
    Well, CS was right when they said that Verizon cannot transfer your email to another account. In order to do that they would have to overwrite the email of your friend ( I dont think your friend would apreciate that ). This is due to a limitation on the email system.
    However, you may have another option. If you are going to be getting Verizon service again in the realitivly near future (4-8 weeks or so), Then after your acount is closed, contact tech support. If you get the right agent they will "enable" your email. That way you can continue to use it even though you dont have service any more. Now they cant do this for long but for temporary it can be done. Then once you get your service back, they can then move your existing email to your new account. (this can now be done as they will overwrite your new email with your old).
    Now if your going to be without Verizon service for more than a couple months, you may be out of luck but this is one option
    umm, oh bhoy!
    In fact, a "repoint" of an email address CAN be completed onto another account AND it does not overwrite anything on the receiving account.    Each acount, whether its a FiOS account or a copper account, has an account number.   The email address is assigned to the account number.    The email address can be "repointed" from one account to another, as an 'add-on' to the new account, then it can be 'repointed' back to another account later.    HOWEVER, the contract does say that you must have a valid account.  AND, Verizon cannot (no company can) allow you to manipulate someone else's account.  
    as to the "after your acount is closed, contact tech support. If you get the right agent they will "enable" your email", well, the fact is that the account has to be provisioned to an address.   So, though I have come accross accounts that seemed to still be "on" after the listed close date, it was not something that verizon's tier 1 tech support can effect (that's who you get on the phone when you call tech support) (note that 'sales' could not do this for you, either)   So good luck with that.
    What happens is that Verizon will not allow anyone to take your email addresses for at least 6 months. 
      Before you cancelled you may have had an option to have a notice auto-replied to any email that gets sent to your email address, for a limited amount of time, like they can do with a telephone number ("this number has been changed to . . . . . ")  that "this email address is temporarily suspended, or something. . . . I said MAY have had the opportunity. .. .   but if it was me, I would get to where you are going and make sure they have Verizon internet account already   and have them call verizon tech support (so they can verify their account info)  with you standing there so that you can verify your old account info and immediately and plainly ask if you can have an email "repoint" done for you.   
    my .02
    cjacobs001

  • How can I delete an email-address from an old Apple ID-account?

    I need to delete an email-address from an old Apple ID-account, but the Apple ID seems to be deleted (but not by myself), to use it as a validated mail-address for communicating via iMessage from my new Apple ID.
    I already tried 'Find my Apple ID'.

    but the Apple ID seems to be deleted (but not by myself), to use it as a validated mail-address for communicating via iMessage from my new Apple ID.
    If that AüpleID has been disabled for security reasons, you may not be able to access it. Then you need to give Apple Support a call:  only they will be able to help you. See this webpage on how to contact Apple Support in your country: There are either telephone numbers given or an email form:
         Apple ID: Contacting Apple for help with Apple ID account security
    Explain, that you need help with an account security problem.
    You can also try to email the iTunes Support using this form:https://ssl.apple.com/emea/support/itunes/contact.html

  • Giving users control of their own distribution list control to add or remove external email addresses from their list

    We are a Exchange 2010 SP3 shop, we have distribution groups (with over 200 email addresses ) from another email system which has only external email addresses (i.e [email protected] [email protected]  and so on …..)
    We want to import these groups into exchange. we called microsoft, they said create mail contacts for each address and put those in a Distribution Group.  I know this will work. 
    Our goal is to have the user create / maintain / add / remove external their own email addresses  (Not the IT department)
    There must be many companies whose requirements match ours. Are there third party tools that would handle creation of distribution list? 
    Any constructive advice would be greatly appreciated ! THank you

    I wouldn't give the ability to create contacts to everyone in the environment because it will become mess at some point of time and IT will have to jump to control it
    anyway so why don’t from the start...
    I would give this to certain people like Leads or Managers of the groups under certain IT Policy so it will be still under control and people
    will think before asking their superior to create them and someone gets responsibility to manage these contacts...
    Though here is the more specific article on how to delegate creating and editing contacts...
    Creating RBAC Role To Delegate
    Editing Contacts
    Blog |
    Get Your Exchange Powershell Tip of the Day from here

  • Is there a program to extract email addresses from a searchable pdf?

    Is there a program that will extract email addresses from a searchable pdf?
    I scanned a 75 page excel spreadsheet and used OCR to create a searchable pdf. I've verified that the OCR did work, the email address are searchable, but I need a way to extract them from the pdf so that I can add them to an email list database. There is other data in the spreadsheets that is not needed and it is making it impossible to just copy and paste. Does anybody know if there is a program available that works on the mac platform for this. Any help is greatly appreciated. Thanks!
    Nate

    Nate B- wrote:
    Is there a program that will extract email addresses from a searchable pdf?
    I scanned a 75 page excel spreadsheet and used OCR to create a searchable pdf. I've verified that the OCR did work, the email address are searchable, but I need a way to extract them from the pdf so that I can add them to an email list database. There is other data in the spreadsheets that is not needed and it is making it impossible to just copy and paste. Does anybody know if there is a program available that works on the mac platform for this. Any help is greatly appreciated. Thanks!
    Nate
    Nate,
    You might want to repost this in the Unix forum, or one of the scripts forums here:
    AppleScripts: http://discussions.apple.com/forum.jspa?forumID=724
    Unix: http://discussions.apple.com/forum.jspa?forumID=735
    Automator: http://discussions.apple.com/forum.jspa?forumID=1261

  • TS1541 I tried importing email addresses from gmail and now my address book is locked up and will not work. Help please.

    I tried importing email addresses from gmail and now my address book is locked up and will not work. Do I need to delete my address book software and reinstall? If so, what is the proper way to do this? New to Macbook software. I have tried several things and nothing has helped. I have backed up photos, movies, etc. My addresses are on my iphone so I can sync them later right if I loose my data?
    Thanks for your time and expertise,
    T.

    You can probably resolve this by removing some Address Book preference files rather than deleting your Address Book application.
    First turn off Synchronize in Address Book Preferences if you can.
    Next restart Address Book and try to export everything to your Desktop.
    I have had a play and found my Address Book preference files. In the following ~/Library is the Library within your Home folder. Any numerals may differ on your Mac. Quit Address Book before doing anything with these.
    1 - Display details and things set in Address Book Preferences
    ~/Library/Preferences/com.apple.AddressBook.plist
    2 - Has no data - not sure what this does
    ~/Library/Preferences/com.apple.AddressBook.abd.plist
    3 - Has last sync date - may have more if I used sync
    ~/Library/Preferences/ByHost/com.apple.AddressBook.sync.000393735c06.plist
    4 - My contact details
    /Library/Preferences/AddressBookMe.plist
    5 - Individual addresses and groups stored as separate files within:
    ~/Library/Application Support/AddressBook/Metadata
    6 - All of these addresses are are also in this single database:
    ~/Library/Application Support/AddressBook/AddressBook-v22.abcddb
    If you wish to remove all addresses drag both 5 & 6 to your Desktop.
    If you wish to reset preferences drag 1 your Desktop.
    Removing 3 may resolve sync issues but I am unable to test this.
    If you wish to reset everything drag all except 4 to your desktop.
    Apple has an interesting page at: http://support.apple.com/kb/TS2481
    I hope this helps.

  • Problems erasing a previous email address from icloud on my iphone

    Hi,
    I set up my apple id on my mac and my iphone a while ago however it was with an old college email address. When setting up my icloud details I wanted to change my email address as the college email address had expired. I was able to delete this email address on my laptop on my apple id account and enable a new one. But when I went to do the same to my iphone it was still under the college address and when I cant seem to sign out this email address from my phone as it keeps saying password incorrect even after me resetting it on numerous occasions.
    Could someone please help me with this as I am limited to what I can do on my phone at the moment.
    Let me know if I have not specified enough details here.

    Welcome to the Apple community.
    If you mean that Find My Phone is asking for a password to a different Apple ID to your current Apple ID and that ID is a previous version of your current ID, not an entirely different one.
    This feature has been introduced to make stolen phones useless to those that have stolen them.
    However it can also arise when the user has changed their Apple ID details with Apple and not made the same changes to their iCloud account/Find My Phone on their device before upgrading to iOS 7, or if you restore from a previous back up made before you changed your details and some other circumstances.
    The only solution is to change your Apple ID back to its previous state with Apple at My Apple ID using your current password, you don’t need access to this address if it’s previously been used with your Apple ID, once you have saved these details enter the password as requested on your device and then turn off "find my phone" and delete the account from your device. It may take a short while to remove the account.
    You should then change your Apple ID back to its current state, save it once again and then log back in using your current Apple ID. Finally, turn "find my phone" back on once again.
    This article provides more information about Activation Lock.
    This is answer is provided from my own database of boilerplate responses and the content was last reviewed and tested on: 2014/05/23

  • How can I copy an email address from the form results while online?

    Our form contains a field where the users submitted their email address.  But I am not able to mouse over this data in the "View Responses" tab, and copy the email address by selecting the email address and Ctrl C, and neither can I right-click this data field and copy it.
    Our organization just switched to Microsoft Office 365, and "mailto" links on web pages can no longer be clicked to launch a native desktop email client program.  So the users tasked with responding to forms submitted via Formscentral now have a much harder workflow.  They are compelled to download the data as a spreadsheet, just to be able to cut and paste an email address into their reply email.
    I suggest and request that the Flash-based "View Responses" tab be modified to allow email addresses to be selectable and able to be  copied to the "clip board".  This would allow users who can't execute a clickable mailto link to copy and paste the email address from Formscentral into a new email.  Many organizations like mine are moving away from native client-based email programs like Outlook to save money,  in favor of cloud based SAS web-based email like Office 365.
    Is there some other way to enable mailto links where no client email program is installed on the users PC?
    Thanks,
    -Dave Bartholomew

    While I am still looking for a better answer, I've discovered a way to cut and paste email addresses from the FormsCentral "View Responses" dashboard.  I wrote up the instructions to help our users and thought I'd share them in this forum as well.
    But it would be nice if there was a simpler solution...  Can anyone offer a better way?
    -Dave B
    ) Right-click on the email address
    ) Select “Filter by: …”  Doing this will change the view to show only entries that were sent from the selected email address.
    ) And it will display the Filter in the header of the form.
    ) Left-click on the email address displayed in the filtered results, in the header of the form.
    ) A new sub-form will appear, and the email address can be cut and pasted from this new sub-form.  Highlight the email address and hit “Ctrl C”, or right-click and select copy.
    ) Now you can paste the email address into a new email in Office 365. (Ctrl V) or right-click and select “Paste”
    ) Click the “Clear” button and then “OK” to exit the filtered view of the data.

Maybe you are looking for