best approach to implement this email service [closed] - spring

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am working on a website in Spring, My website gathers info of jobs positions as well the email to which to send applicant resume to (e.g jobs#microsoft.com)
I want users to be able to send emails thru my website to different jobs positions emails, Sending emails thru the website system will send a designed html email to the job email.
So how would I implement it? Should I find unlimited email hosting and create an account for each user? (does that even exist with combination of spring?)
or is there some other way without asking the user for his email and password (nobody in their right mind will trust that.).
what about spam filters? If I create a new domain and open new email accounts will I be considered as spam?

Almost certainly you'll want a single email account to send the messages, but can use the "reply-to" parameter to have replies go to the user sending the application resume if desired. GMail (or other public mailing service) can be configured for this purpose, see the mailSender object and MailManagerImpl class in my open source project for a working example of using Gmail with Spring’s email support.

Related

Auto Responder SMS-gateway Yii2 [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I'm new in Yii2, now I'm using Yii2 with the advance template.
In my project, I need my application can read database using AJAX, and also run in background task. It's like a Cron Job, but I don't know how to do it.
Anyway, I want to integrate sms-gateway services, so when I create some request, it send SMS to user, and user can send SMS to the application with some format. And the SMS from user, it will be used to do another action in my project.
After all, I just can send SMS from my application to user, but cannot read SMS that send from user, and then I can't trigger another action.
Just the same on Yii2 Forum over here!
I got the answer. I use infinite loop with sleep in 1 second. So it will check the database every seconds, that do action that check incoming sms and auto reply the sms.
while (true) {
/*Other script that will read sms , and reply sms*/
sleep(1);
//Or use usleep to use sleep in microsecond
}
more about sleep

get registration data on paypal pay now [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am having problems with registration on paypal. I need to get and add data to my database when a new use and registers with my website.
Basically the website register new user with a fee. I need register data on paypal pay now button, so you will be redirected to paypal pay page and add data to database at the same time. or when pay successfully.
Any help please, I am using mvc.
I suggest you take a look at the PayPal Instant Payment Notification guide. This product does exactly that; it's an asynchronous server-to-server notification (with validation) which does just that; it notifies you of transactions, both completed and pending, so that you can action them on your end.
Be that by updating your database, XHR and a digital download or sending an email to your buyer.
The best part is that it notifies you long after the fact as well; say, for example, if a buyer files a chargeback case. You'll got notified in that case and will be able to appropriately update the buyer's transaction on your end (revoke permissions to your service, for example).
We have sample IPN sample code up on our GitHub repo.

Pop alert on sending mail to external domain [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions must demonstrate a minimal understanding of the problem being solved. Tell us what you've tried to do, why it didn't work, and how it should work. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Whenever any user is sending mail to external id there should be a Pop up while sending mail to external email IDs.
You have to make some changes to your Notes Mail template on server and update all user mail databases with the template.
How to add requested functionality to Notes mail template?
Open Notes Mail template in Designer and go to form "Memo". Look here for the event Querysend() or Postsend().
Add your code to Querysend() if you want to "warn" the user that he's going to send an email outside company. You could ask user if he wants to send email anyway. In case of YES leave Querysend() with true in case of NO with false.
Add your code to Postsend() if you just want to notice user about sending an email outside company.
The code itself should look at the fields SendTo, CopyTo and BlindCopyTo and decide if it is an external email address included or not. If yes it shows a prompt box with the help of Prompt or MessageBox.
If you use Querysend() event then you have to write your code in LotusScript because there is already code included. Only in case of Postsend() you are able to use Formula language (#Prompt()) or JavaScript (alert()) alternative.
When your changes work for form "Memo" then you have to put same code in forms "Reply" and "Reply With History" and maybe in some other memo forms in own applications too.

Does an exchange server duplicate email data when a user forward it? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
Say we have a user a#domain.com which sends an email to user b#domain.com. Then, user b#domain.com forward the email to c#domain.com and d#domain.com.
Giving that it was the same email, does the exchange server keeps 4 different copies of the email data or it simply points the users to the same email (only with different headers)?
if user b#domain.com adds a simple line (or more, it does not really matter), but keeps the older email data intact, does the exchange server keeps a revision history of that mail and sends only the delta, or it simply builds a whole new email for c#domain.com and d#domain.com?
Giving that it was the same email, does the exchange server keeps 4 different copies of the email data or it simply points the users to the same email (only with different headers)?
Regardless of any of your specific requests, each email sent is a new email (all new header info etc, is all part of an email). If you send 1 email to 30 people (all on the same exchange store) there is only 1 version of the complete email in the system and 30 links to the email for each of the 30 people. Attachments are also stored this way.
if user b#domain.com adds a simple line (or more, it does not really matter), but keeps the older email data intact, does the exchange server keeps a revision history of that mail and sends only the delta, or it simply builds a whole new email for c#domain.com and d#domain.com?
I'm not sure about revision history, but again any email sent is a new email and regardless of exchange stores, is sent in it's entirety. If fordwarded email contains an attachment and the recipient is on the same exchange store, exchange will not duplicate the attachment.
(This question will most likely be moved to http://serverfault.com)

Not receiving sales order emails [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I am testing a Magento 1.6.2 installation, by making some test orders.
When the payment has gone through (via PayPal Standard), I get the order email sent to the customer and also the payment confirmation from PayPal, but I am not getting the emails to the store owner via Magento, i.e. the order email with the customers billing/shipping address and what
I have set the emails in System -> Configuration -> Sales Emails, but nothing is coming through.
Is there any other settings that need to be configured?
how are configure the smtp of your server. You can install a external smtp with the extension http://www.magentocommerce.com/magento-connect/aschroder-com-smtp-pro-email-free-and-easy-magento-emailing-for-smtp-gmail-or-google-apps-email.html an send the transaction email through gmail for example.
Check system > configuration > system > mail sending settings
"disable email" should be "no"
if not working, your web host may need some extra configuration to send mail out.

Resources