• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Webform sending issues

mashamit

New Pleskian
Good Afternoon everyone,

I hope this is thew right forum area for my query.

I have a webform on www.maxymuscarpetcare.co.uk, that sends contact info to an info@ address.
The problem im having is that the email address is not receiving the mails, I have tried a few different email accounts.... hotmail,yahoo and BT. These work, but not the info @ maxymuscarpet... I do know these emails are managed through googleapps (i have tried sending to other googleapps managed email domains, these dont work either), Ihave adjusted everything that google suggests with no sucess.

Im hoping someine may have some other possible solutions I could try.

If you need any more information, please let me know.

PS. the reason for posting in here is that all the domains are held on my plesk 10 virtual server.
 
extra info

123-reg have the domain

google apps mx servers

www record points to 1and1 virtual server (plesk front)

DNS turned off on plesk, with a DNS record pointing to 123-reg

no mail management that im aware of on plesk (although as I say, some mail is going through via the server, not sure how!!!)
 
Sorted the problem..... as well as my DNS providers having google apps mx details, I have added to the dns of the plesk, this seems to have sorted it out....

I minor question....

All emails come through as 'anonymous@{my serverurl}' is there any way to mask the sender?
 
<?php
putenv ("QMAILUSER=USER");
putenv ("QMAILNAME=FULL_USER_NAME");
putenv ("QMAILHOST=DOMAIN");
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/plain;charset=us-ascii\r\n";
$headers .= "From: FULL_USER_NAME <USER@DOMAIN>";
$to="user@FQDN";
$subject = "Testing email";
$body = "";
$err = mail($to, $subject, $body, $headers);
?>

then you need to mod your php.ini with this

safe_mode_allowed_env_vars = PHP_,QMAIL

I've just tested this and it works however I'm not sure if doing this is a security risk or not, I am about to research that now.

If anyone has a better way of doing this I would love to here it.

Cheers all.
 
Last edited by a moderator:
Back
Top