642 Topics

Member Avatar for
Member Avatar for ggeoff

Hi I do not know whether Outook, in this case 2007 running under Vista Home Premium, is the cause of this message. Email has worked, but now displays a Enter Network Password pop up. I would like to know whether this is a Microsoft Windows issue or one due to …

Member Avatar for ggeoff
0
287
Member Avatar for thines01

Here is a technique I use for sending an email using GMail. Notice: You might need to change your email settings under [B]Forwarding and POP/IMAP[/B] inside your GMail settings (to Enable POP). Here is a test program for using the class library (shown in the snippet box): [CODE] using System; …

0
708
Member Avatar for briandapice

I need to create a very simple script with php. Just a simple form with an input field for the users name and another for the users email address. They click submit, and the script sends an email to that address, while attaching a PDF file that I specify in …

Member Avatar for qazplm114477
0
440
Member Avatar for rakibtg

hello there, i have a php e-mail script which i am using for my website where users can submit their website. so i wish to add a reciprocal link checker script which can be act just like Google rEcaptha in my php email form. if my site link can't be …

Member Avatar for skraps
0
213
Member Avatar for pallen

I am adding a page to my site that allows doctors to send me referrals. Some of the data will be highly sensitive, so I need to be sure that it is handled as securely as possible. The data doesn't get stored in a database. It is simply emailed directly …

Member Avatar for urtrivedi
0
125
Member Avatar for rimilbadal

i have a page that has a textarea (id="elm1") i post this value to the same page when a submit page is clicked to send the value of the textarea in a html mail the textarea will contain html code but when i use it only the text comes in …

Member Avatar for rimilbadal
0
921
Member Avatar for dhosthee

We are developing a email web site.but we are facing problem in receiving and validating the mail.i have the following doubts.can you please help me in clarifying these??? one more important thing is we are not using squrrelmail, qmail etc. how do we receive emails for users in email web …

Member Avatar for chrishea
0
142
Member Avatar for gal7

I Have Email Sender Program and i want that the program could send email with images inside too. thanks

0
125
Member Avatar for hindu times

Hi there, I'm working on someone else's site, and I need to add something to their form to make sure that the email address people enter is the correct format (i.e. it has a @ sign and a "."). It currently only checks if there is anything in the field …

Member Avatar for MeSampath
0
150
Member Avatar for intelgy

[B]Hello everyone, I'm new to PHP and creating an advertising website for massage therapists. On the profile page I'm creating a button so anyone can click on to send the advertiser an email. I created a page called profile_sendemail.php which contains the form to send the email and here is …

Member Avatar for the_traveller
0
277
Member Avatar for adamfhs

Im 16 and have been working with Vb for a few months when i have time. I am trying to make a text box that when the user of the program types into it what they have typed will be sent to [B]my email [/B]with a push of a button...Im …

Member Avatar for MonsieurPointer
0
155
Member Avatar for shhahid

I have some problem getting messages from my hotmail account to Windows Live Mail in my laptop. I reinstall Windows Vista as clean install and install every thing But when i install Windows Live Mail and setup my hotmail account i don't know why its not getting my messages. Whereas …

Member Avatar for phoenix_2000
0
206
Member Avatar for strongpot

I have two tables. tbl_clients and tbl_projects. They both contain auto incremented primary key columns. For adding new projects to tbl_projects, I use tbl_clients' clientname field to populate a dropdown menu on the new projects html form. The user chooses a client name from the menu, and the primary key …

Member Avatar for strongpot
0
611
Member Avatar for happygeek

Anyone who uses Twitter, and has at some point posted a link to something interesting, will have almost certainly used a URL-shortening service such as bit.ly for example. Now the spammers are exploiting the popularity of such link-reduction services by establishing their own fake URL-shortening services in order to redirect …

Member Avatar for sufalamtech
2
491
Member Avatar for emiola

Hello, I need my web users to send an uploaded file along with their registration data. The form will be sent via email while at the same time, the uploaded file will be stored in a folder on my server. Take a look at the code please: [CODE] <?php if(isset($_POST['email'])) …

Member Avatar for somedude3488
0
255
Member Avatar for kytro360

Hows it going? In my program I want it to download certain messages, open them, find the HTML link, and at the moment want it to display it in a listBox. I am using the dll OpenPop for this. So far thats not happening and the only thing thats appearing …

0
99
Member Avatar for calebcook

Hi. I'm not sure if this is possible: I found out that Blogger allows you to email text, images, etc to a unique email address, and then it'll post the email as a blog post. I'm trying to create a system like that for my client. Is it possible to …

Member Avatar for mschroeder
0
181
Member Avatar for sammry

I worked on the code based on [url]http://www.daniweb.com/web-development/php/threads/123389[/url] but as per last answer to use the mail function outside loop ( [url]http://www.daniweb.com/web-development/php/threads/123389/708835#post708835[/url]), I still cant work with this script. Please help [CODE] <? $query="SELECT * FROM tbl_users WHERE ex_date between now() and adddate(now(), INTERVAL 7 DAY) ORDER BY user_id ASC"; …

Member Avatar for sammry
0
219
Member Avatar for akshayphp

I am building an email service like gmail. I want to know that" how to offer users an email account under my domain?" For example- my domain is "abcmail.com", how to allow users to create an email like [email]akshay@abcmail.com[/email] I mean how to offer this service?

Member Avatar for Shanti C
0
66
Member Avatar for countycowpoke

I am trying to send registration/ activation information via email, but don't want to store my authentication within the vb.net app and therefore not wanting to use .NET SMTP. I have the below php script that works from a website, but I can't seem to get the variables sent to …

Member Avatar for countycowpoke
0
387
Member Avatar for happygeek

[ATTACH=RIGHT]22256[/ATTACH]England just scraped to a hard fought win against a physical and enthusiastic Argentina side in their opening match of the 2011 Rugby World Cup campaign in New Zealand. But while sports fans the world over get excited about how their country is performing in the initial pool group matches, …

Member Avatar for ChrisHunter
0
454
Member Avatar for whiteyoh

Hi All, Im trying to get my mail to display like the following From: Paul "paul@paul.com" Reply to Customer Services // with the email only showing when clicking reply my current headers are set to [code] $headers .= "To: " . $dsv_to . " <" . $dsv_to . ">\r\n"; $headers …

Member Avatar for pritaeas
0
86
Member Avatar for JoshuaBurleson

I'm having issues with a third level Toplevel in tkinter, that is to say having a toplevel popup from another Toplevel. [CODE] self.emailbttn= Button(self, text='Email', command=self.clientchooser) def clientchooser(self): showing.withdraw() client_choose() def client_choose(): global client client=Toplevel() client.title=('Choose Email') client.geometry=('800x600') Client(client) class Client(Frame): '''Choose Email Client''' def __init__(self,master): super(Client, self).__init__(master) self.grid() self.create_widget() …

Member Avatar for TrustyTony
0
194
Member Avatar for cgull

Hello, Does anyone know how can I setup an email server on my local machine, with google or my host's server? Or do you know of any site that explains how to do that? Thanks

Member Avatar for cgull
0
84
Member Avatar for emreozpalamutcu

I'm working in this project that has a feedback form and in this feedback form there is only body, so it doesn't ask for subject and who it's from. And all the messages send from will go to a custom mail account, for example [email]Example@custom.com[/email] How can I do this …

Member Avatar for cent91
0
586
Member Avatar for calebcook

Hi. I’m creating a system for my client where he goes to a page where he types in a letter. The text is saved as a file (preferably PDF) and then sent as an email to a printing service. I’d prefer not to save multiple PDFs on my server, so …

Member Avatar for tiggsy
0
968
Member Avatar for muzamilsw10

please Help me out, i'm new in java and i want code for following program. write a program that takes a series of email addresses as a command-line argument and, after parsing/processing the input, display the addresses separately and in alphabetical order at the command window. For example if the …

Member Avatar for NormR1
0
213
Member Avatar for king_saqib

Asalam to every one im a begnner in programming hoew can i send an email through vb exe please help me in under standing:(

Member Avatar for debasisdas
0
293
Member Avatar for rakwel10

How? Im developing a site. It has an email app that sends email. Im trying to know how to do it the other way. This time, gmail or ymail will send and my site will receive. How? I'll wait for your replies.. Thanks for the help..

Member Avatar for chrishea
0
119
Member Avatar for happygeek

It may seem like email has been around forever, but actually it is exactly 40 years since the first email was sent by the man credited with inventing it, engineer Ray Tomlinson, on Wednesday 8th June 1971. [attach]21227[/attach] Tomlinson was a computer engineer who was working for a company that …

Member Avatar for GrimJack
1
3K

The End.