Tagged Questions
0
votes
2answers
16 views
How to implement email verification with php?
I'm using php and laravel as a framework. I want to let user be able to activate their accounts through email.
I have no experience with this however. I already set up a form that asks for username, ...
0
votes
1answer
27 views
Remove everything on the page except anchor tags
I am trying to create a php program that will allow the user to mass email users, given a certain page. I am loading in a page via php, using the file_get_contents() function.
The site has a list of ...
0
votes
0answers
27 views
trouble getting php checkbox values to show up in resulting email
I've been looking for an answer for hours, and have tried multiple solutions from these boards and others, and I still can't find the answer.
I'm really only looking to receive the checkbox data from ...
1
vote
1answer
11 views
Sending PHP email of shopping cart
I've written a form that sends an email to an address after a form is completed with what the sender's order will be.
Currently, I've written the php so that it lists all the items in the email ...
0
votes
1answer
35 views
PHP mail function missing characters
I have a really weird error with the mail() function in php.
This is the code i'm using to send the message:
$to = strip_tags($_POST['newMail']);
$subject = "Company: Update your ...
0
votes
1answer
38 views
Newsletter form sending email to client, how I can prevent clients email from replying
I have this client that I set up a newsletter signup form that gets sent to their personal email and from their they add it to their system manually, that's just how they been doing it for years. ...
0
votes
2answers
40 views
From header php mail() send sms to phone number
I really want to change the from parameter to absolutely anything I want, when sending sms with php's mail() function.
e.g the user sees text message from "the developer" on their phone screen.
I ...
0
votes
2answers
28 views
Sent email arrives with few hours delay
This is my email sending code:
if(isset($_POST['contactname']) && isset($_POST['email']) && isset($_POST['message'])) {
$contactname = $_POST['contactname'];
$email = ...
0
votes
0answers
11 views
No disposition in php imap email structure to indicate an attachement
I'm having an issue getting attachements from emails using the PHP IMAP functions. In theory the attachments should be identifiable with [disposition] => ATTACHMENT or similar. But I am simply not ...
1
vote
0answers
29 views
php e-mail to-field with strange characters
I'm having trouble getting my code in PHP to send out emails to persons with special characters in their names, like é à ö.
Here's the snippet of the coding:
$firstname = ...
0
votes
2answers
42 views
PHP confirmation email not working because of “\” in link
when sending a confirmation email the confirmation code looks like this http://mydomain.com\/confirmreg.php?code=3f76ab3a202e73fb0526cd2091c5b7ce (randomly generated) how do i remove the "\" before ...
1
vote
1answer
12 views
sending mail from php: 2 received entrys with phpmailer
Hi I tried to send an email over phpmailer. I take phpmailer to send it over smtp.
Every customer have by us have an owne ip. I sent an test email and I see that there was two "received" entrys in the ...
-1
votes
0answers
22 views
What would cause Hotmail to forward HTML in plain text? [closed]
I am currently using PHP's mail function to send HTML-formatted mail. A user of mine emailed me to say that when forwarded from Hotmail to Gmail, it causes the email to go into plain text. Any idea ...
0
votes
1answer
22 views
Sending image attachment
I have a PHP form, i'm trying to send an image from it as an attachment. I already fixed few things in my code.
I'm not sure if it will send the image (because I had some problems with it)
...
0
votes
0answers
11 views
PHP SMTP library with AUTH XOAUTH2 support?
Do you know of any PHP SMTP library that supports AUTH XOAUTH2 when logging in to a SMTP server? The only one I have found is Zend-email via this tutorial.
All the libraries I have seen only support ...