Hi kickoff3pm,
Well, by default Sentora uses that sender, but you can change it going to: Sentora Config > 3rd Line where it says: From Address your form have the address replace for your@domain.com make sure, it's the main domain name from your server installation configuration.
If by other mean, you want to use it on forms you can define it as this example using PHP functions:
Well, by default Sentora uses that sender, but you can change it going to: Sentora Config > 3rd Line where it says: From Address your form have the address replace for your@domain.com make sure, it's the main domain name from your server installation configuration.
If by other mean, you want to use it on forms you can define it as this example using PHP functions:
PHP Code:
<?php
$to = "somebody@example.com";
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: webmaster@example.com\r\n";
mail($to,$subject,$txt,$headers);
?>
'' Life is full of important choices ''
Help Sentora Donate now => http://sentora.org/donate
Help Sentora Donate now => http://sentora.org/donate