Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
mail
- Page 1
Re: Contact form does not working
Programming
Web Development
1 Month Ago
by Biiim
… the
mail
sender. */ $
mail
->CharSet = "UTF-8"; $
mail
->Encoding = 'base64'; $
mail
->isSMTP(); $
mail
->Host = '
mail
.example.com…out'; /* Set the
mail
message body. */ $
mail
->Body = 'some message'; /* Finally send the
mail
. */ $
mail
->send(); } catch …
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by Salem
… from the code. https://www.php.net/manual/en/function.
mail
.php Some things to try. 1. Headers is an optional… was typed into your dialog directly into
mail
. Does a very simple inline code work? `
mail
('my@my.address.com','Testing...','1…
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by gediminas.bukauskas.7
WEB security now rejects
mail
sent from any computer. Select some
mail
provider and send
mail
using it. Using certificated WEB serve is an another solution. Obtain legal certificate, register it on WEB server (IIS, Apache, NGINX, ...)
Contact form does not working
Programming
Web Development
2 Months Ago
by juan_35
… $subject = $_POST['subject']; $message = $_POST['message']; $headers = 'From:' . $email; if(
mail
($email_to, $subject, $message, $headers)){ echo 'sent'; // we are sending this… text to the ajax request telling it that the
mail
is sent.. }else{ echo 'failed';// ... or this one to …
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by Dani
… to, but there are services out there such as Zoho
Mail
, SendGrid, ConstantContact, Mailchimp, Hostinger, etc. which, for the most part… getting any PHP errors, it's possible that your outgoing
mail
server is not configured properly on your web server.
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by Dani
… general feed whatever was typed into your dialog directly into
mail
. Salem is referring to passing each of those variables in…
Re: Contact form does not working
Programming
Web Development
1 Month Ago
by gediminas.bukauskas.7
It was a time when anybody could to send a
mail
from Apache (or IIS) installed on local computer but internet …
Re: Contact form does not working
Programming
Web Development
1 Month Ago
by webmaker
Apart from doing some protection to your code, it will more than likely be your ISP not allowing the
mail
function to work. We have had to get an email acct with permissions allocated to each websites form by our providers.
Re: Contact form does not working
Programming
Web Development
1 Month Ago
by Biiim
… about my badly setup emails being sent out via the
mail
function - as the PHP server was not setup correctly and…
Re: How To Send MYSQL Data To An Email
Programming
Web Development
2 Months Ago
by Biiim
Here's the code I've been using for about 15 years now - but a bit more simplified: function dbConnect($type = ''){ $conn = mysqli_connect( DBHOST, DBUSER, DBPASS, DBDB); if (!$conn) { echo "Error: Unable to connect to MySQL." . PHP_EOL; echo "Debugging errno: " . mysqli_connect_errno() . …
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by gediminas.bukauskas.7
Follow this article: https://stackoverflow.com/questions/4595730/sending-email-from-localhost
Re: Contact form does not working
Programming
Web Development
1 Month Ago
by programmer_5
Reducing spam bots I strongly suggest to use SMTP, I would prefer to use PHPMailer which get more secure and handle professionally templates.
Re: Contact form does not working
Programming
Web Development
1 Month Ago
by Dani
> Emailing became more restrictive in the last year Are you referring to SPF, DKIM, and DMARC?
mail send to inbox
Programming
Web Development
10 Years Ago
by malatamil
…gt; </div> </form>
mail
/contact_me.php <?php // Check for empty …\n". 'X-Mailer: PHP/' . phpversion(); $retval = @
mail
('joe@digitalvillage.in',$email_subject,$email_body,$headers); if($retval == true) { echo…
Mail Formatting lost when sending from Panther "mail" app.
Hardware and Software
macOS
20 Years Ago
by nickanthony
…firewire version) OSX Panther 10.3.5 When I compose
mail
with formatting, such as color text, center text alignment,…etc., some people, but not all, that I send
mail
to respond saying all formating was lost (receiving plain text… only). Also, when composing
mail
I can not set a background color - that function …
Mail keeps going offline
Hardware and Software
macOS
20 Years Ago
by thotdoc
Mail
in 10.3.5 keeps going "offline." I'll set it to online, and it goes to offline after trying to get email. Also, Info for
mail
is set correctly, yet it can't hook up to
mail
/dns servers. Teo other email accounts that I have with the same provider work OK, but the Client is entourage. Any help would be appreciated. G
Mail script
Programming
Software Development
19 Years Ago
by chrchcol
mail
-s "subject" [email]chris.collins@fuse.net[/email] < email What can I add to this line and where to automatically create a blind carbon copy? Also if possible what can I add to this line and where if possible to add the address from? Thanks
Re: Mail() [Function.mail]: Failed To Connect To Mailserver At "localhost" Port 25,
Programming
Web Development
13 Years Ago
by ppt123
mail
() [function.
mail
]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini. SNIP
Mail System
Programming
Web Development
12 Years Ago
by naru vaishnaw
… to send 2 persons mailid in this
mail
<?php $con = mysql_connect("localhost…$message.= " Thank you Regards, Helpdesk Raipur "; $sent =
mail
($to,$subject, $message ) ; if($sent) {print " ";…
Re: mail()
Programming
Web Development
13 Years Ago
by sharathg.satya
…; $subject = $_REQUEST['subject'] ; $message = $_REQUEST['message'] ;
mail
("someone@example.com", "Subject: $subject", $message…quot; ); echo "Thank you for using our
mail
form"; } else //if "email"…gt; [/ICODE] and i had wrote my
mail
instead of that [email]someone@example.com[/email…
Re: Mail System
Programming
Web Development
12 Years Ago
by pritaeas
If you want to send that
mail
to two persons, then add a second email address in `$to` separated by a semi-colon.
Re: Mail
Programming
Software Development
15 Years Ago
by Dan08
… I found this: [URL="http://www.emailaddressmanager.com/tips/
mail
-settings.html"]http://www.emailaddressmanager.com/tips…
Re: Mail
Programming
Software Development
15 Years Ago
by Dan08
…;Recipient: ")) message = str(raw_input("Message: ")) s.connect('
mail
.live.com') s.login(user, password) s.sendmail(user, recipient…, message) s.quit() print("E-
Mail
Sent") time.sleep(4) [/CODE] Can anyone please tell…
Re: Mail.
Hardware and Software
macOS
14 Years Ago
by dogsbody
…, not solved, but gone away. It was on most incoming
mail
for aprox two months then just stopped. I had it… on an e-
mail
yesterday from Canada with it on, the first for quite…
Mail
Hardware and Software
macOS
16 Years Ago
by dem10
How do I set up my school email on my
mail
account?? Thanks Dem10
Mail
Programming
Software Development
15 Years Ago
by Dan08
Hi there, I'd like to know if is there a way to check my e-
mail
and send e-mails with python. I am trying to do that in Window Vista, and I've tried some codes with smtp, but I couldn't find a solution. Can anyone help me out with this, thanks Dan08.
Mail.
Hardware and Software
macOS
14 Years Ago
by dogsbody
Hi Every One. Most of my ordinary
mail
is arriving with one or more vertical lines down the left hand side of the page. Is there any way to prevent this happening.
Re: Mail.
Hardware and Software
macOS
14 Years Ago
by joeleitz
[QUOTE=dogsbody;1377766]Hi Every One. Most of my ordinary
mail
is arriving with one or more vertical lines down the left hand side of the page. Is there any way to prevent this happening.[/QUOTE] Like this? | | | | ? That's just a quote line to let you know that the previous text is from another thread?
Re: Mail.
Hardware and Software
macOS
14 Years Ago
by royng
Just a wild guess. I think it has to do with your application problem. is your other software working well? If the problem lies with
mail
, try re downloading it from the internet Try the link above [url]http://support.apple.com/downloads/Mail_Update[/url]
mail()
Programming
Web Development
13 Years Ago
by sharathg.satya
hi friends. i have a problem with execution of the
mail
() of php its not sending messages to the specified mails. i need help to work it out so that i can complete the topic thanks in advance
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC