[quote user="Davife"]
What I would like to do is allow members to send messages to each other which they will receive in their email inbox. They will not see the senders return email, but see something like sendername@ourwebsite.com for example.
[/quote]
How would they send the messages? From your PHP script or their mail client?
If PHP, just set your script to use the desired from address.
[quote]
In looking at the documentation, it seems that a way to do this is thru a domain mailbox but unless there's a way to filter the list of emails, I would be forced to download the entire mailbox everytime and filter the emails myself or post each download to my own database and subsequently delete those emails from the domain mailbox. Is there some other way?
[/quote]
Do you want them to be able to reply to the sendername@ourwebsite.com address and it go to the real email of the sender?
If so you could populate the alias list from your DB. See the manual for info on creating/importing an alias file.
A domain mailbox is probably not what you want.
[quote user="Davife"]<p>What I would like to do is allow members to send messages to each other which they will receive in their email inbox.&nbsp; They will not see the senders return email, but see something like <a href="mailto:sendername@ourwebsite.com" mce_href="mailto:sendername@ourwebsite.com">sendername@ourwebsite.com</a> for example.&nbsp; </p>
<p>[/quote]</p><p>How would they send the messages? From your PHP script or their mail client?</p><p>If PHP, just set your script to use the desired from address. </p><p>[quote]</p><p>In looking at the documentation, it seems that a way to do this is thru a domain mailbox but unless there's a way to&nbsp;filter the list of emails, I would be forced to download the entire mailbox everytime and filter the emails myself or&nbsp;post each&nbsp;download to&nbsp;my own&nbsp;database and subsequently delete those emails from the domain mailbox.&nbsp;&nbsp; Is there some other way?</p><p mce_keep="true">&nbsp;[/quote]</p><p mce_keep="true">Do you want them to be able to reply to the&nbsp; <a href="mailto:sendername@ourwebsite.com">sendername@ourwebsite.com</a> address and it go to the real email of the sender? </p><p mce_keep="true">If so you could populate the alias list from your DB. See the manual for info on creating/importing an alias file.
</p><p mce_keep="true">A domain mailbox is probably not what you want.
</p>