Tagged Questions
0
votes
1answer
33 views
Variable “to” address in PHP Mailer
I am trying to set the "to" address for an email sent via an html form utilizing phpmailer. The end goal is to utilize a droplist to let the user select which person they are contacting depending on ...
0
votes
1answer
38 views
sent mail succed on my machine but failed the server using phpmailer
<?php
date_default_timezone_set('America/Toronto');
require_once('class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
...
0
votes
0answers
18 views
Awardspace Email Setting
I got a Award Space Mail Hosting account.I created that account only for the free email sending feature.
Tried
PHP mailer
swiftmailer ect..
But no use.Can anyone give me a full working code of php ...
0
votes
0answers
26 views
Headers in PHPmailer
I am using phpmailer for sending messages. Iam receiving following in header of the messages ..
Content-Transfer-Encoding: quoted-printable
X-AntiAbuse: This header was added to track abuse, please ...
0
votes
1answer
26 views
Registration email sent are classified as spam
registration email sent from a new website I am building end up in the receivers' spam folders, they are classified as spam. So far I have no idea why this happens. Therefore I am posting the email ...
-1
votes
2answers
50 views
Send Sign Up Form Results to Email Address Via PHP [closed]
I have a question about PHP email function, I hope you can help me with this. I have little to no experience in PHP.
Ive set up a web page, where users can submit following info via the HTML form:
...
0
votes
1answer
60 views
phpmailer code not working when within function
I have the code below in a function.. however it never adds the attachment to the email. The email comes through fine but with no attachment.
However, if i remove the code from the function and add ...
1
vote
3answers
146 views
Send email from php at specified time
I'm trying to set up a "reminder" system in my phone through php. I have a form set up for me to input an email(which is actually my phone number address so it is sent as a SMS) and send a message to ...
0
votes
2answers
46 views
PHP Mail Sending Issue
I'm having a hard time getting the following code to run:
$name = 'Kevin';
$company = 'nonw';
$website = 'none';
$email = 'my@email.com';
$phone = 'none';
$message = 'Just a test message.';
$message ...
0
votes
1answer
653 views
PhpMailer able to send mail from Windows but not CentOS
I have Apache w/ php on my windows for testing purpose.
I also have Apache w/ php on my production CentOS 6.4 server.
I am able to perfectly send an email on my windows server using PHPMailer.
...
1
vote
0answers
85 views
Optimise mail sending process of phpmailer
I am trying to send mails using phpmailer and code is working fine. However when I see the CPU usage history in task manager I could see it is fluctuating rapidly between 0% to 100%. And RAM usage is ...
3
votes
1answer
70 views
In “To” header same Address display two times in mail when using php mailer
When i send mail to ok@gmail.com using php mailer
then In "To" header same Address display two times in mail
Like This:
To: ok@gmail.com; ok@gmail.com
simple i used this:
...
0
votes
2answers
139 views
why php mailer not send attachement?
I m using php mailer to send mail with attachment but i don't know why attachment not send
else msg in body send properly and no error show plz give best solution for this
$to = 'ok123@gmail.com';
...
0
votes
1answer
208 views
Dynamic files for phpmailer using dompdf
I am generating pdf file using dompdf whose filename keeps changing as I have assigned a variable in dompdf stream output and this filename always remains as unique filename.
I want to attach a file ...
0
votes
5answers
100 views
phpmailer for php variables
I am running phpmailer and very much new to it.
Problem definition: Not able to see php variables data in the received email while html content can seen properly.
Below is some of the code:
require ...
1
vote
2answers
212 views
How do I send via php (email function) special characters? [SELF-Solved] [closed]
can you indicate any requirements that are used to send special characters (for example ---- €; "$% & / () =? * É ç § ° @ #] [-----) through mail function?
For now I have to set as below.
I'm ...
-2
votes
3answers
112 views
PHP Mail Showing Html Tag
Instead of adding the following Header information it is showing HTML tag in PHP Mail.
$headers = "From: ".$name."<".$email.">\r\n";
$headers .= "Reply To: ".$email."\r\n";
...
0
votes
3answers
229 views
Maximum number of email addresses used in “$to” parameter when sending PHP mail?
While I believe that there is no actually declared limit and the number of mail recipients of php mail() function is theoretically unlimited, I also believe that, from your experience, there is some ...
1
vote
0answers
107 views
Unexpected http status error in Amazon SES API
I am trying to use Amazon SES API to send mail using PHP. I am following this github example.
My php code is like following:
<?php
if (!class_exists('SES')) require_once 'SES.php';
// ...
-6
votes
1answer
65 views
PHP Mail using Google [closed]
I'm new to PHP.
Can anyone help me to figure out how to send mail in PHP using Google as host?
I tried many links!
Dint help me! PHP mailer program proper?
0
votes
4answers
2k views
PHPMailer SMTP configuration
For the past 2 hours I've been looking online to see if any other people encountered this problem, and it seems a lot has, bot none of the answers are working for me.
SMTP -> FROM SERVER:220 ...
0
votes
2answers
123 views
How to send an email from webserver using phpmailer
I can send email from my localserver. But when I am trying to send email from webserver then show the following message:
Message was not sent
Mailer Error: Language string failed to load: ...
-1
votes
2answers
433 views
How to create a email feedback form for my existing website? [closed]
Users fill the feedback form and send mails to us.
I wnat to ue php mail() function.
please help how to use the php script? what are the things i need for that?
I am new to this, can you please help ...
2
votes
2answers
566 views
PHP mail returns true but email is not delivered
I am trying to send an email in following way -
from : xyz@domain1.com
reply-to : xyz@domain1.com
to : abc@domain2.com
cc : abc@domain3.com
My email is getting delivered to the address ...
-4
votes
2answers
114 views
How can I integrate this piece of code to my php mail code? [closed]
I am using Simple Mailing List to send emails but the problem is that when the subjects have characters like ç ó í á I get problems.
So I found that there is a code to resolve my problem. I just don't ...
1
vote
2answers
1k views
How to format my email php mailer
When I send the email with html tags.Gmail shows the tags also.Why is that? any solution?how to ad images bold text colored text according to my code?
here is my email content code
...
0
votes
1answer
598 views
spamassassin rdns reversedns
Spamassasin gives the following flag on my emails:
*
0.8 RDNS_NONE Delivered to internal network by a host with no rDNS
"This test checks to see if there is a reverse DNS entry
...
2
votes
0answers
139 views
spamassasin HTML_IMAGE_ONLY
My mails get 1.6 points (out of max 2 to be classified by spam) from this rule:
SpamAssassin Rule: HTML_IMAGE_ONLY_24
Standard description: HTML: images with 2000-2400 bytes of words
Explanation
...
0
votes
5answers
3k views
Upgraded to Joomla 2.5.6 - “Could not execute: /usr/sbin/sendmail”
After upgrading to Joomla 2.5 so that I could use the latest version of Virtuemart, the system emails no longer work.
I have checked the Sendmail path against the entry in the php.ini file. ...
0
votes
1answer
197 views
Handling HTML entities in contenteditable divs
I am using a contenteditable <div> to edit an e-mail message (specifically, with NicEdit). I want to be able to submit the message body in a form, process it with PHP, and send it using the ...
0
votes
2answers
155 views
PHP mail to variable
I've searched and searched for something similar, but i think i'm not doing it right. So i will ask a question. This is very basic. My problem is as follows:
I have a multi-page form, consisting of 4 ...
0
votes
2answers
681 views
error send email with phpmailer in server domain but succed in localhost
i have detail error with this problem,
SMTP -> FROM SERVER:220-server.modulindo.com ESMTP Exim 4.77 #2 Wed, 11 Jul 2012 10:57:22 +0700 220-We do not authorize the use of this system to transport ...
-1
votes
1answer
90 views
mail sending error in php [closed]
I'm facing an error with PHP's mail() function. The mail() function can successfully send mail to gmail, ymail, rediffmail, etc. But in case of webmail, it fails.
I haven't found any reason for ...
-1
votes
1answer
561 views
Sending HTML Email using CKEditor and PHPMailer
I need to send e-mail created with CKEditor and sending it using phpmailer. I use the following code:
$to =$_POST["toEmail"];
$subject=$_POST["emailSubj"];
...
3
votes
1answer
502 views
Send url in php mail
I send a mp3 file download url which was taken from database and mailed to an user in php.
When the links are triggerd to users,
some links contain "!" marks and No hyperlink is generated.
In ...
0
votes
2answers
165 views
Phpmailer dropping name value on html emails, but working with plain text?
I am using phpmailer to send out newsletters, It seems to work out and sends out plain text emails ok, but for some reason when sending html emails drops the persons name, where as plain text works ...
2
votes
2answers
1k views
Mass mail using PHP from my web application
I had a web application in PHP which hosted in GoDaddy server . The site is a type of movie database and discussion . I have to send mass mail to my registered users from my application. For eg. at ...
3
votes
2answers
216 views
PHP mail() docs say that I should only use LF in the body, but RFC 5322 says otherwise.
PHP manual (http://php.net/manual/en/function.mail.php) says:
Each line should be separated with a LF (\n). Lines should not be
larger than 70 characters.
But actual RFC 5322 gives totallty ...
1
vote
1answer
768 views
PHP Mail - UTF 8 Encoding problems with Chinese characters
I have a PHP Mail script that sends out emails and I need to send some out in Chinese. I have the following code:
$email_header = "From: $from\n";
$email_header .= "X-Priority: 1\n"; //1 ...
3
votes
3answers
4k views
PHPMailer or SwiftMailer? [duplicate]
Possible Duplicate:
PhpMailer vs. Swiftmailer?
I have always used PHP's built in mail() function and it has always worked for me without fail and does the job i want it to.
Now some maybe ...
2
votes
3answers
14k views
insert image in mail body
How to insert image in mail body when user click on send button. I am using php mail
3
votes
2answers
4k views
Gmail mark as spam email with html and anchor links
first of all, sorry for my bad English =(
I created an HTML email, send it to yahoo, hotmail and gmail, the first and the second work's ok, received in the front of the inbox, but, the gmail mark as ...
2
votes
3answers
608 views
phpmail always go to spam
how to optimize php_mail() w/o sending the email to a spam?
everything that my webpage is doing sends the email into spam?how to make it not go to spam??
3
votes
3answers
681 views
My server and php mail() function sends email to the spam folder
is there any way i install SMTP service on my Linux server and use php to send emails through it ?
so that emails doesn't show up as spam ?
maybe through ssl ?
my mail() function is perfect , with ...
0
votes
1answer
494 views
PDF attachment shows up in Gmail but Outlook refuses to open it
I'm relatively new to php.
I wrote a script that sends an email with a pdf attachment to a user and a confirmation to a co-worker. Everything works fine in web-based email clients like gmail but the ...




