4,468 Topics

Member Avatar for
Member Avatar for super-duper

Hey, everyone. I am writing a batch script (.bat program) to automate some tasks. And when that certain task is complete, I would like it to send an email to the admin saying if the task was completed successfully or it failed. It will figure out if the task was …

Member Avatar for Habitual
0
166
Member Avatar for Patiodude

I'm a novice to PHP and MySQL, and would like to create a mailing list on my site, which can send HTML documents (basically styled to match the actual website). Can someone point me towards a good tutorial, or show me how to do so?

Member Avatar for pritaeas
0
121
Member Avatar for dany12

I want to create an email class with many functions and use this methods I want some advice how to make this flexible and reliable as much as I can but another important feature is security to verify all the external input I am going to past all my code …

Member Avatar for dany12
1
129
Member Avatar for adchicago

Can some one help my butt out that why I only get one check box out of the 4 to show up in my email to myself when a user hits submit? When ever I check box any email I only get the bottom check box to show up in …

Member Avatar for adchicago
0
211
Member Avatar for SeniorAlexandro

So I'm making a Program to Start/Restart/Stop and running commands from the Console for my Server. Now when someone uses the console, I want to be alerted of it on my Mail. I am using Visual Studio 2010. This is my Code: Dim mail As New MailMessage Dim smtp As …

Member Avatar for poojavb
0
783
Member Avatar for rakibtg

hi, my email form is written in php, it does not support multiple languages i mean unicode fonts. it shows something like this: খোলা জানালা . In this case what i should do.

Member Avatar for diafol
0
221
Member Avatar for dagtad

I'm using windows 7 and wamp server on my computer. I want to send email from my local host and i write the php code like the following <?php $to = 'dagtade@gmail.com'; $subject = 'test_subject'; $message = 'test_message'; mail($to,$subject,$message); ?> the above code neither displays error message nor sends the …

Member Avatar for pritaeas
0
112
Member Avatar for lena1990
Member Avatar for pritaeas
0
64
Member Avatar for poojavb

Hello Friends, One help needed.... I have a product database....in which I have productid,prodname,inventoryvalue,reordervalue I have to design a email system that as soon as the product reaches the reorder level it shud generate an email.... but the condition is there will be many products in the database....and on one …

Member Avatar for poojavb
0
168
Member Avatar for EvolutionFallen

I have some web forms that contain several normal fields, and at least one upload field each. Upon submission, the contents of the form are e-mailed to the recipient. When I fill out the form *without* including a file for upload, it works correctly. I get an e-mail that, when …

Member Avatar for EvolutionFallen
0
226
Member Avatar for codechrysalis

private void btnSend_Click_1(object sender, EventArgs e) { To = txtPhoneNumber.Text.Trim() + cboCarrier.SelectedItem.ToString().Trim(); From = txtSender.Text.Trim(); Subject = txtSubject.Text.Trim(); MailServer = txtMailServer.Text.Trim(); Msg = txtMessage.Text.Trim(); try { MailMessage message = new MailMessage(From, To, Subject, Msg); SmtpClient mySmtpClient = new SmtpClient(MailServer); mySmtpClient.UseDefaultCredentials = true; mySmtpClient.Send(message); MessageBox.Show("Message has been sent to " + …

Member Avatar for codechrysalis
0
242
Member Avatar for eoop.org

Hi, i am getting this error for an email activation function. can someone help me removing this error message and make it work? ## Error: ## Warning: mysql_result() expects parameter 1 to be resource, boolean given in /home/prevpxmj/public_html/core/functions/users.php on line 6 ## Code: ## <?php function activate($email, $email_code){ $email = …

Member Avatar for tyson567
0
209
Member Avatar for opticblaze

Hi there, I got the following challenge. I have a site that is hosted on a windows 2010 server and i am trying to get the website to send emails. The site runs on Apache 2.2.9, PHP 5.2.6 and we set it up to run on port 6000. I have …

Member Avatar for Squidge
0
193
Member Avatar for javedsai

Hi Everyone, Gmail Whenever I receive mail from same receipient then, my mail are grouped for e.g. If Receipient 1 send me 3 mails then, it will grouped and display (3) as count. I don't want this. Does any body know how to remove this group? I want all mails …

Member Avatar for adam_k
0
191
Member Avatar for james chaco

Hello, I want to develop an email system (preferably through java but any other language will also do), say mymail.com, exactly like gmail, yahoo, hotmail or any other mailing system where users can send and receive a mail. I would like to know where can i start from. Thanks in …

Member Avatar for godzab
0
242
Member Avatar for Robert1995

Hello everyone. I want to do this. I have a website for example www.rusuandreirobert.com . I want to create via PHP an email address 3rrgtbf@rusuandreirobert.com . I don't want to use this : http://$cpuser:$cppass@$cpdomain:2082/frontend/$cpskin/mail/doaddpop.html?email=$euser&domain=$edomain&password=$epass&quota=$equota Cheers, Robert

Member Avatar for pritaeas
0
62
Member Avatar for divsok
Member Avatar for dany12

Hello I was wondering how to create an array with all fields in a email form and then send the email <?php if(isset($_POST['submit']))//array{ $content=array( $name=strip_tags($_POST['name']); $email=strip_tags($_POST['email']); $phone=strip_tags($_POST['phone']); $address=strip_tags($_POST['address']); $city=strip_tags($_POST['city']); $title=strip_tags($_POST['subject']); $message=strip_tags($_POST['message']); ); } $to = "email@domain.com"; $subject =$title; $from = $name; $headers = "From:" . $from; mail($to,$subject,$content/*change array to string …

Member Avatar for priebd1
0
193
Member Avatar for zemzela

I create web application, and I have a task to create form by which user will be able to register to receive email massage for latest news. I don't really understand how to realize this. Is there some specific things I shold do? thanks for the advice

Member Avatar for thines01
0
66
Member Avatar for jersie03

Good day everyone, I want to know how to send email to outlook in php after signing up please give some example and discuss it to me clearly thanks very much .. :*

Member Avatar for jersie03
0
3K
Member Avatar for riahc3

Hey How do I correctly validate that a email is in the correct format? I tried using the Apache Commons Validator library but, since Im using a web service, it seems not to want to fix it up and use it. I comply the code, make the aar, put it …

Member Avatar for riahc3
0
178
Member Avatar for Transcendent

I have a form where someone can send me a message but I do not seem to get the e-mail. here is the html file: <!DOCTYPE HTML> <html> <head> <title>Financial E-mail: Send us questions.</title> <hr/> <style type="text/css"> body { background-color: rgb(98,21,153);; background-position: top; background-repeat: no-repeat; color: gold; } a:link {color:rgb(255,215,0);}/* …

Member Avatar for diafol
0
227
Member Avatar for rakibtg

hello there, i can run php script from my computer(windows 7) by xampp. today while testing a php mail form to send an email from my computer to a e-mail address then it refuse me! it shows me something like this: Warning: mail() [function.mail]: SMTP server response: 553 We do …

Member Avatar for pritaeas
0
234
Member Avatar for code739

yow! I have a question. the case is have and email notifacation in my php code in the database(MSSQL) i put an email add these are the two email address Rex.Cam@email.com and rex.cam@email.com the email notication is intended for the email who has a capital letter on the start the …

Member Avatar for code739
0
114
Member Avatar for mie.ilani

need help! Public Sub emailNotification(ByVal strTo As String, ByVal strFrom As String) Try If strTo Is Nothing Then MessageBox.Show("Please Check Email") Else Dim [to] As New MailAddress(strTo) Dim [from] As New MailAddress(strFrom) Dim message As New MailMessage([from], [to]) message.Subject = "Parcel Info No: (" + txtTracking.Text + ")" message.Body = …

Member Avatar for Oxiegen
0
161
Member Avatar for super123

I am using the following code for receiving information from users, **is it possible to get all the information as a PDF attachment ?** protected void Button1_Click(object sender, EventArgs e) { SmtpClient smtpClient = new SmtpClient(); MailMessage message = new MailMessage(); message.To.Add("admin@domain.com"); if (CheckBox1.Checked == true) { emailadd.Text = employeenameDropDown.SelectedValue; …

Member Avatar for super123
0
297
Member Avatar for XxDireShadowxX

Hi I am creating my first webpage using DreamWeaver CS5.5. I am trying to work on a contact me page and I want the submit button to automatically send me an email with the information provided in the form. I have found a lot of stuff on the internet on …

Member Avatar for XxDireShadowxX
0
268
Member Avatar for Reverend Jim

I know you are busy fixing bugs and tweaking (and I very much appreciate the effort) but I have a suggestion to slightly tweak the email notification. The old system would not send an email to tell me that there was a new posting on a watched thread if the …

Member Avatar for Dani
0
194
Member Avatar for fireguy

Hello, I'm experiencing a problem again, my screen went to blue then when I turned on the computer the screen stopped on the Toshiba opening page with f2 setup, f12 for boot device selection menu on the bottom left. I hit f12 then a repeating message of pxt-e61 (media test …

Member Avatar for fishfood
0
2K
Member Avatar for mehrantahir

Hi everybody, So, 'Litmus', a web app for testing emails and webpages across browsers and email clients, has a proprietary method that they claim is able to track not just opens, clicks, browsers, etc (standard with an embedded image and pass-through link tracking.) What's unique is they claim that they …

Member Avatar for mousecraft
0
263
Member Avatar for Dial_tone

I have a 9 user network with Exchange 2000, Outlook 2003 and Windows 2K desktops. Since Sunday 7/17/05 one user has not been able to retrieve new mail in Outlook; nothing new shows up but the previous mail is all there. There are no errors on startup and no changes …

Member Avatar for arunjo
0
435
Member Avatar for moraira73

Hi, I was wondering if somone could let me know the best method of sending video by email? Is a specilist bulk mail service provider required or can video files just be compressed and sent by normal mail? What is the best software to use? Look forward to hearing from …

Member Avatar for brianrichard
0
354
Member Avatar for [csharp]

Hi, I decided to close all gmail and similar accounts because of the privacy policy, and similar. Now looking for a service that will be replaced. I found runbox and lavabit, but what do you think about them, can you recommend any service that you use?

Member Avatar for reganstar
0
92
Member Avatar for George_91

Hello, I am trying to include a Contact Form in my website. I'm using WAMPserver and Free SMTP Server to test it. The problem is, everytime I click in my button of Send Mail, this error appears in my browser: *Warning: mail() [function.mail]: failed to connect to mailserver at "localhost" …

Member Avatar for pritaeas
0
1K
Member Avatar for don't give up

hello please help me first question : how can send email for users if him register in my website"i saved email in database" ,, send one Time a day Automatic .. second question : how can search in database then display for user thanks alot

Member Avatar for diafol
0
176
Member Avatar for meko22

Hi there, I would like to make an email form that would select all the emails from a MySQL db and then send that message to all addresses. I got this script but was unable to get it working. Any help would be great. [code] <?php //Connect to database mysql_connect("localhost","user","password") …

Member Avatar for shahidsidd
0
8K
Member Avatar for programmer12

I am trying to build a script (PHP email attachment) that works for all mailing Systems (Gmail, Yahoo, Outlook etc) The codes below work perfectly for Hotmail, but Gmail and others dont come through. What should i do to the codes below to fix this issue. Thanks!

Member Avatar for programmer12
0
305
Member Avatar for oksam

In our webiste, After user signup, we send an email with acitivation link to their email address. We are using PHP mail() to send a simple email. Until this point, we have checked with yahoomail, gmail, hotmail.. it works fine. But yesterday, we were checking with the microsoft outlook. No …

Member Avatar for fobos
0
630
Member Avatar for Red Dragon

Hi, i'm just trying to make a simple 'contact us' form which emails me with the contents of each form field, here's what i have: HTML -------- <form action="contact.php" method="post" name="contact"> *Full Name<br /> <input name="name" type="text" /><br /><br /> *Email:<br /> <input name="email" type="email" /><br /><br /> *Message:<br /> …

Member Avatar for Red Dragon
0
390
Member Avatar for archie.herbias

is it possible not to include the account password for the user that will send the email. i tried not to put password but it does not work. the email that can send only is the one that is set. please help. this is the code: <%@ page import="java.io.*,java.util.*,javax.mail.*"%> <%@ …

0
100
Member Avatar for bishisht

Hello there below is the easy way to get the email addresses extracted from any file. import os import re import sys def grab_email(file): """Try and grab all emails addresses found within a given file.""" email_pattern = re.compile(r'\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b',re.IGNORECASE) found = set() if os.path.isfile(file): for line in open(file, 'r'): found.update(email_pattern.findall(line)) for …

Member Avatar for TrustyTony
1
306
Member Avatar for karthik_ppts
Member Avatar for javedsai

Hi everyone, I configured my email with google apps. Now, I want to track email logs for all email id. I want to know whether, my client recieves email or not. Kindly help. Thanks in advance..

0
77
Member Avatar for mohamedasif18

Hi all, i am doing a project that need to be create email accounts without login to cpanel. I have created that and the mail is working perfectly. Now i wnat to know.. where is the email accounts, sent messages, inbox messages are saving in the cpanel.. Any help??

Member Avatar for eltonpiko
0
133
Member Avatar for CarterLangley

Hi all, I have a login system for the site. My problem is I am very new to php and battling to understand this. What I want to do is only accept logins from people that have emails from a certain domain. Here is the code I have at the …

Member Avatar for cuonic
0
157
Member Avatar for shyamraghu

i have use a sending mail code but problem is that exist when i have send mail offline it sending but when i have publish my website and then upload this website and then sending mail so a error is occur error is The transport failed to connect to the …

Member Avatar for JorgeM
0
193
Member Avatar for Nance23

Hello, Sorry if I posted this on the wrong section. An sbcglobal.net email account I haven't used in a couple of years got hacked. One of my friend emailed me to let me know. It apparently send out a bunch of spam mail last night to all the people on …

Member Avatar for Nance23
0
206
Member Avatar for muthukumar46

i have to receive a mail when compare 2 xml files difference i have 2 xml file 1 st xml file: <?xml version="1.0" encoding="utf-8" ?> <Books> <Book bookId="100" name="Asp.Net" price = "230" /> <Book bookId="101" name="C#" price = "200" /> <Book bookId="102" name="Silverlight" price = "300" /> <Book bookId="103" name="MFC …

Member Avatar for thines01
0
257
Member Avatar for basketmen

Each time our site got error messages, is stored in a home/username/public_html/error_log file, in ftp right? i wonder can i get notification to email each time new error message added/increased? the response or notification is the most important, so can fixing the problem asap, and since some of us not …

Member Avatar for rubberman
0
111
Member Avatar for klemme

I have this function, which sends an email to the user and confirms an order. I cant figure out why I cant get to display the image IN the email, at the very top. I have tried with: `"Content-Disposition: attachment; filename=\"mail-top-img.gif\""` And `"Content-Disposition: inline; filename=\"mail-top-img.gif\""` Both sends the mail as …

Member Avatar for klemme
0
196

The End.